index.scss 376 B

123456789101112131415161718192021
  1. .form-page-footer {
  2. $height: 60px;
  3. height: calc($height);
  4. &-container {
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. position: fixed;
  9. left: 220px;
  10. right: 0;
  11. bottom: 0;
  12. height: $height;
  13. background: white;
  14. border-top: 1px solid var(--border-color);
  15. > *:not(:first-child) {
  16. margin-left: 20px;
  17. }
  18. }
  19. }