fix: increase footer margin on mobile
The footer was hidden by the sidebar.
This commit is contained in:
parent
99b38939f7
commit
125cb6c35b
1 changed files with 15 additions and 2 deletions
|
@ -1,10 +1,23 @@
|
||||||
footer {
|
footer {
|
||||||
color: var(--text-accent-150);
|
color: var(--text-accent-150);
|
||||||
grid-area: footer;
|
grid-area: footer;
|
||||||
margin: 1em auto;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|
||||||
|
@media (max-width: 1140px) {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 8em;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1141px) {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: .25em;
|
margin: .25em;
|
||||||
|
|
||||||
|
@ -29,4 +42,4 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue