blob: 5c5bd9915f05a49620770480e4a455cba38ac23d (
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 {
overflow: hidden;
flex: 1 1;
}
.main-header, .main-footer {
flex: 0 0;
}
}
|