Skip to content

Commit d7c33cf

Browse files
authored
Merge pull request #63 from c00/master
Separated navbar styling out of @supports query to support Firefox
2 parents 7df59a7 + 7365ee8 commit d7c33cf

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

style/app.css

+8-7
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,17 @@ h2, h3 {
5454
}
5555
@supports (-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px)) {
5656
.navbar {
57-
background-color: rgba(255, 255, 255, 0.6);
5857
-webkit-backdrop-filter: blur(6px);
5958
backdrop-filter: blur(6px);
6059
}
61-
62-
@media (prefers-color-scheme: dark) {
63-
.navbar {
64-
background-color: rgba(36, 37, 38, 0.6);
65-
border-bottom: 1px solid #1b1b1b;
66-
}
60+
}
61+
.navbar {
62+
background-color: rgba(255, 255, 255, 0.6);
63+
}
64+
@media (prefers-color-scheme: dark) {
65+
.navbar {
66+
background-color: rgba(36, 37, 38, 0.6);
67+
border-bottom: 1px solid #1b1b1b;
6768
}
6869
}
6970
.document h1+ul, .document h1+ul ul {

0 commit comments

Comments
 (0)