mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
fix footer to end of page on non-smartphones
This commit is contained in:
parent
024adda9a4
commit
ef2e50d0fc
3 changed files with 16 additions and 2 deletions
|
@ -5496,7 +5496,10 @@ footer {
|
|||
margin-top: 2em;
|
||||
color: #777777;
|
||||
background-color: #333333;
|
||||
text-align: center; }
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%; }
|
||||
|
||||
/* links */
|
||||
a.inverted {
|
||||
|
@ -5690,6 +5693,9 @@ a.inverted {
|
|||
.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .btn {
|
||||
font-size: 23px; }
|
||||
|
||||
footer {
|
||||
position: initial; }
|
||||
|
||||
/* navigation bar */
|
||||
.navbar {
|
||||
position: initial; }
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -275,6 +275,10 @@ footer {
|
|||
color: $gray-light;
|
||||
background-color: $gray-dark;
|
||||
text-align: center;
|
||||
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* links */
|
||||
|
@ -565,6 +569,10 @@ a.inverted {
|
|||
font-size: 23px;
|
||||
}
|
||||
|
||||
footer {
|
||||
position: initial;
|
||||
}
|
||||
|
||||
/* navigation bar */
|
||||
.navbar {
|
||||
position: initial;
|
||||
|
|
Loading…
Reference in a new issue