1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00
Files
Sonarr/frontend/src/Components/Page/PageContentBody.css
T
Mark McDowall 5894b4fd95 v3 UI
2018-12-29 13:08:43 +01:00

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