1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00
Files
Radarr/frontend/src/Components/Form/FormGroup.css
2019-06-11 22:06:43 -04:00

29 lines
357 B
CSS

.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;
}
}