Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.

Commit 8386e1c

Browse files
committed
improve light mode ui
improve light mode ui
1 parent 7c7f11e commit 8386e1c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/layouts/navbar.svelte

+8-8
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@
8686
top: 0;
8787
left: 0;
8888
width: 100vw;
89-
backdrop-filter: blur(10px) saturate(400%);
90-
-webkit-backdrop-filter: blur(20px) saturate(400%);
89+
backdrop-filter: blur(10px) saturate(100%);
90+
-webkit-backdrop-filter: blur(20px) saturate(100%);
9191
background-blend-mode: darken;
9292
position: absolute;
9393
display: flex;
@@ -98,8 +98,8 @@
9898
background-color: #343333ba;
9999
width: 210px;
100100
height: 100vh;
101-
backdrop-filter: blur(20px) saturate(400%);
102-
-webkit-backdrop-filter: blur(20px) saturate(400%);
101+
backdrop-filter: blur(20px) saturate(100%);
102+
-webkit-backdrop-filter: blur(20px) saturate(100%);
103103
position: fixed;
104104
right: -210px;
105105
margin-top: 60px;
@@ -110,12 +110,12 @@
110110
@media (prefers-color-scheme: light) {
111111
#topNavbar
112112
{
113-
background-color: #d2d2d2ba;
114-
background-blend-mode: darken;
113+
background-color: #f5f5f594;
114+
background-blend-mode: normal;
115115
}
116116
.mobileNavMenu {
117-
background-color: #d2d2d2ba;
118-
background-blend-mode: darken;
117+
background-color: #f5f5f594;
118+
background-blend-mode: normal;
119119
}
120120
}
121121
@media (max-width: 768px) {

0 commit comments

Comments
 (0)