diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/topnav.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/topnav.tsx b/components/topnav.tsx index 80a6ce38..e1cdb717 100644 --- a/components/topnav.tsx +++ b/components/topnav.tsx @@ -9,8 +9,9 @@ import { MenuButton, MenuList, MenuItem, + Container, useMediaQuery, - Container + useColorModeValue } from '@chakra-ui/react' import { GiHamburgerMenu } from "react-icons/gi" import { DiGithubBadge } from "react-icons/di" @@ -45,6 +46,7 @@ export default function Navbar() { position="fixed" backdropFilter="auto" backdropBlur="6px" + backdropBrightness={useColorModeValue("1.1", "1")} width="100%" pt="5px" > |