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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
472 B
SCSS
Raw Normal View History

/**
* 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]');
}
}