123456789101112131415161718192021 |
- .form-page-footer {
- $height: 60px;
- height: calc($height);
- &-container {
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- left: 220px;
- right: 0;
- bottom: 0;
- height: $height;
- background: white;
- border-top: 1px solid var(--border-color);
- > *:not(:first-child) {
- margin-left: 20px;
- }
- }
- }
|