blob: fcf5c20aa18ad2e9c6124b01b5b23059800805d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.page {
position: relative;
display: flex;
flex-direction: column;
height: 100vh;
.page-header,
.page-footer {
flex: 0;
}
.page-content {
overflow: hidden;
flex: 1;
}
}
|