Skip to content

Commit

Permalink
fix: blur style
Browse files Browse the repository at this point in the history
  • Loading branch information
YuzeTT committed Nov 23, 2023
1 parent 07e9598 commit 8d4fd22
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ a {
}

.blur-circle {
filter: blur(70px);
-webkit-filter: blur(70px);
filter: blur(70px);
}

.fillsvg-white * {
Expand All @@ -103,9 +103,9 @@ input[type="range"]::-webkit-slider-thumb {
border-radius: 50%;
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)){
@supports ((-webkit-filter: initial) or (filter: initial)){
.blur-img-webkit {
--globalnav-backdrop-filter: saturate(180%) blur(24px);
--globalnav-filter: blur(24px);
}
}

Expand All @@ -114,9 +114,9 @@ input[type="range"]::-webkit-slider-thumb {
filter: blur(24px);
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)){
@supports ((-webkit-filter: initial) or (filter: initial)){
.blur-img-webkit-sm {
--globalnav-backdrop-filter: saturate(180%) blur(10px);
--globalnav-filter: blur(10px);
}
}

Expand Down

0 comments on commit 8d4fd22

Please sign in to comment.