Skip to content

Commit

Permalink
reduce footer height on narrow screens
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorVilas committed Apr 30, 2023
1 parent 35ca87f commit e2070e2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion styles/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,14 @@ footer > div {

footer > div img {
cursor: pointer;
}
}

/* responsiveness */

@media only screen and (max-width: 800px) {
footer {
--padding: 10px;
padding-top: var(--padding);
padding-bottom: var(--padding);
}
}

0 comments on commit e2070e2

Please sign in to comment.