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

19 lines
315 B
CSS

.page {
display: flex;
flex-direction: column;
height: 100%;
}
.main {
position: relative; /* need this to position inner content - is this really needed? */
display: flex;
flex: 1 1 auto;
}
@media only screen and (max-width: $breakpointSmall) {
.page {
flex-grow: 1;
height: initial;
}
}