Skip to content

Commit

Permalink
Use absolute and readd zIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
konsumlamm committed Jan 28, 2024
1 parent 06265a2 commit 8e97b50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liberica/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { PropsWithChildren } from "react";
export function Navbar(props: PropsWithChildren) {
return (
<div
className="position-absolute bottom-0 w-max flex bg-white p-2 gap-3"
style={{ justifyContent: "space-between", alignItems: "center" }}
className="absolute bottom-0 w-max flex bg-white p-2 gap-3"
style={{ justifyContent: "space-between", alignItems: "center", zIndex: 1000 }}
>
{props.children}
</div>
Expand Down

0 comments on commit 8e97b50

Please sign in to comment.