25 lines
362 B
CSS
25 lines
362 B
CSS
.footer_bg{
|
|
background-color: #fff;
|
|
}
|
|
|
|
.footer_box{
|
|
display: flex;
|
|
padding-top: 24px;
|
|
align-items: center;
|
|
|
|
}
|
|
.footer_box .item{
|
|
flex: 1 1 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.active_text{
|
|
color: #03c160;
|
|
}
|
|
.text{
|
|
color: #1e2028;
|
|
}
|
|
.safe_bottom{
|
|
height: env(safe-area-inset-bottom);
|
|
height: constant(safe-area-inset-bottom);
|
|
} |