修改BUG:前台页面高度变化导致页脚消失
This commit is contained in:
parent
3ac85aa550
commit
95c155ae65
|
@ -49,6 +49,10 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-footer {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 548px) {
|
@media (max-width: 548px) {
|
||||||
|
@ -112,6 +116,13 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-footer {
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-height: 568px) {
|
@media (min-height: 568px) {
|
||||||
|
|
|
@ -47,14 +47,6 @@
|
||||||
z-index: 50;
|
z-index: 50;
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-footer {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
z-index: 50;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content {
|
#main-content {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
@ -80,14 +72,6 @@
|
||||||
z-index: 50;
|
z-index: 50;
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-footer {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
z-index: 50;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content {
|
#main-content {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
|
@ -67,6 +67,15 @@ a, a:hover, a:focus {
|
||||||
padding: 10px 4px;
|
padding: 10px 4px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-footer {
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 50;
|
||||||
|
}
|
||||||
|
|
||||||
/*end title*/
|
/*end title*/
|
||||||
|
|
||||||
.go-top {
|
.go-top {
|
||||||
|
|
Loading…
Reference in New Issue