We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4200d7a commit 8f7fca1Copy full SHA for 8f7fca1
website/src/App.css
@@ -10,6 +10,7 @@
10
--color-green: rgba(200, 255, 200, 1);
11
--color-red: rgba(150, 10, 10, 1);
12
--color-violet: rgba(150, 100, 150, 1);
13
+ --color-fadebg: rgba(7, 7, 8, 0.5);
14
}
15
16
@utility smolglow-* {
website/src/App.tsx
@@ -43,7 +43,7 @@ function App() {
43
44
return (
45
<>
46
- <nav className="nav fixed w-full max-h-fit">
+ <nav className="nav fixed w-full max-h-fit z-10">
47
<div
48
className={cn(
49
'nav-container',
@@ -64,7 +64,8 @@ function App() {
64
'md:grid-cols-2',
65
'gap-1',
66
'place-content-cente',
67
- 'backdrop-blur-sm'
+ 'backdrop-blur-md',
68
+ 'bg-fadebg'
69
)}
70
>
71
<a className="nav-logo-container h-14 min-w-fit" href="/">
0 commit comments