fix: Fix header z-index issues (#4549)

fix header z index issues
This commit is contained in:
Mike Fortman 2024-11-12 17:05:54 -06:00 committed by GitHub
commit 824f39ef36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -47,7 +47,7 @@ export default function AppHeader(): JSX.Element {
}, []);
return (
<div className="z-[1] flex h-[62px] w-full items-center justify-between gap-2 border-b px-5 py-2.5 dark:bg-background">
<div className="flex h-[62px] w-full items-center justify-between gap-2 border-b px-5 py-2.5 dark:bg-background">
{/* Left Section */}
<div className={`flex gap-2`}>
<Button

View file

@ -271,6 +271,14 @@ const config = {
backdropBlur: {
xs: "2px",
},
zIndex: {
'60': '60',
'70': '70',
'80': '80',
'90': '90',
'100': '100',
'999': '999',
},
},
},