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