buttons.css 399 B

123456789101112131415161718192021222324
  1. /**
  2. * @file
  3. * This file is used to style form buttons generically, with overrides per form
  4. */
  5. .form-actions {
  6. display: flex;
  7. flex-wrap: wrap;
  8. margin: -0.5rem;
  9. padding: 0.75rem 0;
  10. }
  11. @media screen and (min-width: 77em) {
  12. .form-actions {
  13. margin: 1rem -0.5rem;
  14. padding: 0;
  15. }
  16. }
  17. .form-actions > .button,
  18. .form-actions > .form-wrapper {
  19. margin: 0.5rem;
  20. line-height: normal;
  21. }