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