mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-29 18:15:37 -04:00
20 lines
375 B
CSS
20 lines
375 B
CSS
.contentBody {
|
|
/* 1px for flex-basis so the div grows correctly in Edge/Firefox */
|
|
flex: 1 0 1px;
|
|
}
|
|
|
|
.innerContentBody {
|
|
padding: $pageContentBodyPadding;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.contentBody {
|
|
flex-basis: auto;
|
|
overflow-y: hidden !important;
|
|
}
|
|
|
|
.innerContentBody {
|
|
padding: $pageContentBodyPaddingSmallScreen;
|
|
}
|
|
}
|