mirror of
https://github.com/Radarr/Radarr
synced 2026-01-16 12:33:42 +01:00
24 lines
300 B
CSS
24 lines
300 B
CSS
.group {
|
|
display: flex;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Sizes */
|
|
|
|
.small {
|
|
max-width: $formGroupSmallWidth;
|
|
}
|
|
|
|
.medium {
|
|
max-width: $formGroupMediumWidth;
|
|
}
|
|
|
|
.large {
|
|
max-width: $formGroupLargeWidth;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointLarge) {
|
|
.group {
|
|
display: block;
|
|
}
|
|
}
|