You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/Components/Page/PageContentBody.css

20 lines
375 B

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