Skip to content

Commit

Permalink
fix: Fix header z-index issues (#4549)
Browse files Browse the repository at this point in the history
fix header z index issues
  • Loading branch information
mfortman11 authored Nov 12, 2024
1 parent 8e42baf commit 824f39e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/components/appHeaderComponent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions src/frontend/tailwind.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,14 @@ const config = {
backdropBlur: {
xs: "2px",
},
zIndex: {
'60': '60',
'70': '70',
'80': '80',
'90': '90',
'100': '100',
'999': '999',
},
},
},

Expand Down

0 comments on commit 824f39e

Please sign in to comment.