.Polaris-PageActions {
  @include page-actions-layout;
  border-top: border();
  position: sticky;
  bottom: 0;
  background: color('sky', 'lightest');
  z-index: 31;
}

@keyframes translateUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.Polaris-PageActions--temporary {
  animation: translateUp duration(slowest) easing() 1;
}