mirror of
https://github.com/Radarr/Radarr
synced 2025-12-25 17:52:43 +01:00
28 lines
357 B
CSS
28 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;
|
|
}
|
|
}
|