From 6c2acada86cee3ec2f492e5852f97415436fdbad Mon Sep 17 00:00:00 2001 From: Damien Ostler Date: Thu, 15 Feb 2024 21:57:55 -0500 Subject: [PATCH] fix: made header less see through --- components/AppAppBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AppAppBar.tsx b/components/AppAppBar.tsx index 4375e5a..8c5ad96 100644 --- a/components/AppAppBar.tsx +++ b/components/AppAppBar.tsx @@ -66,7 +66,7 @@ function AppAppBar({ user }: AppAppBarProps) { borderRadius: '10px', bgcolor: theme.palette.mode === 'light' - ? 'rgba(255, 255, 255, 0.4)' + ? 'rgba(255, 255, 255, 0.6)' : 'rgba(0, 0, 0, 0.4)', backdropFilter: 'blur(24px)', maxHeight: 40,