mirror of
https://github.com/Readarr/Readarr
synced 2025-12-29 03:34:35 +01:00
19 lines
375 B
CSS
19 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;
|
|
}
|
|
}
|