You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/Components/Form/FormLabel.css

30 lines
442 B

.label {
display: flex;
justify-content: flex-end;
margin-right: $formLabelRightMarginWidth;
font-weight: bold;
line-height: 35px;
}
.hasError {
color: var(--dangerColor);
}
.isAdvanced {
color: var(--advancedFormLabelColor);
}
@media only screen and (max-width: $breakpointLarge) {
.label {
justify-content: flex-start;
}
}
.small {
flex: 0 0 $formLabelSmallWidth;
}
.large {
flex: 0 0 $formLabelLargeWidth;
}