Skip to content

Commit e39e450

Browse files
authored
fix logo size on firefox (#81)
1 parent ddafe66 commit e39e450

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docs/stylesheets/extra.css

+7-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,13 @@ want the standard DUB fill color for big areas)
5858
padding: 0;
5959
}
6060

61-
.md-header__button.md-logo :is(img, svg),
62-
.md-header__button.md-logo :-webkit-any(img,svg) {
61+
.md-header__button.md-logo :is(img, svg) {
62+
height: 40px;
63+
width: initial;
64+
}
65+
66+
/* 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 */
67+
.md-header__button.md-logo :-webkit-any(img, svg) {
6368
height: 40px;
6469
width: initial;
6570
}

0 commit comments

Comments
 (0)