1234567891011121314151617181920 |
- .horizontal-buttons {
- display: flex;
- justify-content: space-between;
- padding: 2rem 0;
- }
- .vertical-buttons {
- width: 27rem;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 1.5rem;
- }
- .bottom {
- position: absolute;
- bottom: 0;
- margin-bottom: 2rem;
- margin-top: 2rem;
- }
|