button-styles.scss 305 B

1234567891011121314151617181920
  1. .horizontal-buttons {
  2. display: flex;
  3. justify-content: space-between;
  4. padding: 2rem 0;
  5. }
  6. .vertical-buttons {
  7. width: 27rem;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. gap: 1.5rem;
  12. }
  13. .bottom {
  14. position: absolute;
  15. bottom: 0;
  16. margin-bottom: 2rem;
  17. margin-top: 2rem;
  18. }