Skip to content

Commit 8f7fca1

Browse files
committed
[website] Fix blurring bug
1 parent 4200d7a commit 8f7fca1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

website/src/App.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
--color-green: rgba(200, 255, 200, 1);
1111
--color-red: rgba(150, 10, 10, 1);
1212
--color-violet: rgba(150, 100, 150, 1);
13+
--color-fadebg: rgba(7, 7, 8, 0.5);
1314
}
1415

1516
@utility smolglow-* {

website/src/App.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function App() {
4343

4444
return (
4545
<>
46-
<nav className="nav fixed w-full max-h-fit">
46+
<nav className="nav fixed w-full max-h-fit z-10">
4747
<div
4848
className={cn(
4949
'nav-container',
@@ -64,7 +64,8 @@ function App() {
6464
'md:grid-cols-2',
6565
'gap-1',
6666
'place-content-cente',
67-
'backdrop-blur-sm'
67+
'backdrop-blur-md',
68+
'bg-fadebg'
6869
)}
6970
>
7071
<a className="nav-logo-container h-14 min-w-fit" href="/">

0 commit comments

Comments
 (0)