Spaces:
Runtime error
Runtime error
File size: 397 Bytes
d757506 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
.page{
height: 100vh;
display: flex;
flex-direction: column;
}
.content{
flex: 1;
overflow-y: auto;
}
.footer{
height: 100px;
display: flex;
line-height: 100px;
text-align: center;
justify-content: space-around;
border-top: 1px solid #eee;
.item{
flex: 1;
font-size: 26px;
color: #666;
&.active{
color: @mainColor;
font-weight: bold;
}
}
} |