_radio-checkbox-multiple.scss 547 B

123456789101112131415161718192021222324
  1. /**
  2. * Lists of checkboxes or radios, one after another vertically.
  3. * Labels are next to their input, horizontally centered.
  4. */
  5. .w-field--checkbox_select_multiple,
  6. .w-field--checkbox_select_multiple_with_disabled_options,
  7. .w-field--boolean_radio_select,
  8. .w-field--radio_select {
  9. ul {
  10. list-style: none;
  11. padding: 0;
  12. margin: 0;
  13. }
  14. label {
  15. @apply w-body-text;
  16. color: theme('colors.text-context');
  17. display: inline-flex;
  18. align-items: center;
  19. line-height: normal;
  20. margin-bottom: theme('spacing.[2.5]');
  21. }
  22. }