Hide footer menu unless inside mobile app, ignore on web.
This commit is contained in:
parent
4e69871d38
commit
9a698f6bd6
|
@ -254,6 +254,7 @@ button i {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer{
|
footer{
|
||||||
|
display: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
@ -408,3 +409,6 @@ span.neg{
|
||||||
span.pos{
|
span.pos{
|
||||||
color: #20ce45;
|
color: #20ce45;
|
||||||
}
|
}
|
||||||
|
body.mobile footer{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue