Skip to content

Commit

Permalink
fix logo size on firefox (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 authored Nov 24, 2023
1 parent ddafe66 commit e39e450
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,13 @@ want the standard DUB fill color for big areas)
padding: 0;
}

.md-header__button.md-logo :is(img, svg),
.md-header__button.md-logo :-webkit-any(img,svg) {
.md-header__button.md-logo :is(img, svg) {
height: 40px;
width: initial;
}

/* if this is in the same block as above (comma separated), this won't work in firefox for some reason, so we just duplicate the block */
.md-header__button.md-logo :-webkit-any(img, svg) {
height: 40px;
width: initial;
}
Expand Down

0 comments on commit e39e450

Please sign in to comment.