Skip to content
Snippets Groups Projects
Commit 97bb5170 authored by Dorian Lesbre's avatar Dorian Lesbre
Browse files

Fixed footer offset

parent 1046b055
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ main {
padding: 1px 30px 50px;
max-width: 920px;
margin: 0 auto 0 auto;
min-height: calc(100vh - 330px); /* viewport-height - (header+footer+nav bar) */
min-height: calc(100vh - 370px); /* viewport-height - (header+footer+nav bar) */
}
main h2 {
......@@ -116,14 +116,14 @@ main a:link {
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 50px; /* Height of the footer */
width: calc(100% - 80px); /* viewport width - padding */
padding: 10px 40px;
height: 50px;
color: white;
display: flex;
background-color: var(--color_bg_1);
border-top: 5px solid var(--color_bg_2);
align-items: center;
padding: 10px 40px;
}
footer #sponsors img {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment