mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 16:04:55 +08:00
26 lines
444 B
SCSS
26 lines
444 B
SCSS
|
.form-kit__control-checkbox {
|
||
|
&[type="checkbox"] {
|
||
|
margin: 0.17em;
|
||
|
margin-right: 0;
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
|
||
|
&-label {
|
||
|
display: flex;
|
||
|
gap: 0.5em;
|
||
|
font-weight: normal !important;
|
||
|
margin: 0;
|
||
|
color: var(--primary);
|
||
|
|
||
|
.form-kit__field[data-disabled] & {
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.form-kit__field-checkbox {
|
||
|
+ .form-kit__field-checkbox {
|
||
|
margin-top: calc(-1 * var(--form-kit-gutter-y));
|
||
|
}
|
||
|
}
|