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

Commit

Permalink
improve light mode ui
Browse files Browse the repository at this point in the history
improve light mode ui
  • Loading branch information
Lixkote committed Apr 22, 2024
1 parent 7c7f11e commit 8386e1c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/layouts/navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
top: 0;
left: 0;
width: 100vw;
backdrop-filter: blur(10px) saturate(400%);
-webkit-backdrop-filter: blur(20px) saturate(400%);
backdrop-filter: blur(10px) saturate(100%);
-webkit-backdrop-filter: blur(20px) saturate(100%);
background-blend-mode: darken;
position: absolute;
display: flex;
Expand All @@ -98,8 +98,8 @@
background-color: #343333ba;
width: 210px;
height: 100vh;
backdrop-filter: blur(20px) saturate(400%);
-webkit-backdrop-filter: blur(20px) saturate(400%);
backdrop-filter: blur(20px) saturate(100%);
-webkit-backdrop-filter: blur(20px) saturate(100%);
position: fixed;
right: -210px;
margin-top: 60px;
Expand All @@ -110,12 +110,12 @@
@media (prefers-color-scheme: light) {
#topNavbar
{
background-color: #d2d2d2ba;
background-blend-mode: darken;
background-color: #f5f5f594;
background-blend-mode: normal;
}
.mobileNavMenu {
background-color: #d2d2d2ba;
background-blend-mode: darken;
background-color: #f5f5f594;
background-blend-mode: normal;
}
}
@media (max-width: 768px) {
Expand Down

0 comments on commit 8386e1c

Please sign in to comment.