File size: 648 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
@import "@automattic/typography/styles/variables";
.form-label {
display: block;
font-size: $font-body-small;
font-weight: 600;
margin-bottom: 5px;
.form-label__required {
color: var(--color-error);
font-weight: normal;
margin-left: 6px;
}
.form-label__optional {
color: var(--color-neutral-50);
font-weight: normal;
margin-left: 6px;
}
input[type="checkbox"] + span,
input[type="radio"] + span {
font-weight: normal;
}
}
.form-label-core-styles {
font-weight: 500;
line-height: 1.4;
color: var(--color-neutral-100);
margin-bottom: 6px;
&:not(.form-label-core-styles-no-caps) {
text-transform: uppercase;
}
}
|