mirror of
https://github.com/Radarr/Radarr
synced 2026-01-14 19:43:09 +01:00
36 lines
616 B
CSS
36 lines
616 B
CSS
.pageContentBodyWrapper {
|
|
display: flex;
|
|
flex: 1 0 1px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.contentBody {
|
|
composes: contentBody from '~Components/Page/PageContentBody.css';
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.tableInnerContentBody {
|
|
composes: innerContentBody from '~Components/Page/PageContentBody.css';
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.contentBodyContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.pageContentBodyWrapper {
|
|
flex-basis: auto;
|
|
}
|
|
|
|
.contentBody {
|
|
flex-basis: 1px;
|
|
}
|
|
}
|