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.
Lidarr/frontend/src/Components/Form/FormGroup.css

29 lines
357 B

.group {
display: flex;
margin-bottom: 20px;
}
/* Sizes */
.extraSmall {
max-width: $formGroupExtraSmallWidth;
}
.small {
max-width: $formGroupSmallWidth;
}
.medium {
max-width: $formGroupMediumWidth;
}
.large {
max-width: $formGroupLargeWidth;
}
@media only screen and (max-width: $breakpointLarge) {
.group {
display: block;
}
}