mirror of
https://github.com/searxng/searxng.git
synced 2024-11-06 13:20:11 +01:00
f496dc353d
The original code made by @logico-dev (#559)
20 lines
275 B
Plaintext
20 lines
275 B
Plaintext
// Sticky footer styles
|
|
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
/* Margin bottom by footer height */
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
/* Set the fixed height of the footer here */
|
|
height: 60px;
|
|
}
|