Skip to content

Commit

Permalink
Fix logo size with media query
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfercher committed Nov 14, 2023
1 parent fde99e2 commit 91daec6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,12 @@ section.cover a {
text-decoration: none;
}
section.cover p>img {
width: 20%;
width: 35%;
}
@media (min-width: 800px) {
section.cover p>img {
width: 18%;
}
}
section.cover a:hover {
text-decoration: none;
Expand Down

0 comments on commit 91daec6

Please sign in to comment.