0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00
wagtail/client/scss/components/forms/_radio-checkbox-multiple.scss
Thibaud Colas eac5e0bc2c Finish re-implementing form styles based on design feedback & code review
Co-authored-by: LB Johnston <mail@lb.ee>
2022-08-05 10:36:52 +02:00

23 lines
472 B
SCSS

/**
* Lists of checkboxes or radios, one after another vertically.
* Labels are next to their input, horizontally centered.
*/
.w-field--checkbox_select_multiple,
.w-field--checkbox_select_multiple_with_disabled_options,
.w-field--radio_select {
ul {
list-style: none;
padding: 0;
margin: 0;
}
label {
@apply w-label-3;
display: inline-flex;
align-items: center;
line-height: normal;
margin-bottom: theme('spacing.[2.5]');
}
}