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 {
|
||||
color: var(--text-accent-150);
|
||||
grid-area: footer;
|
||||
margin: 1em auto;
|
||||
text-align: center;
|
||||
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 {
|
||||
margin: .25em;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue