Skip to content

Commit

Permalink
fix: horizontal overflow
Browse files Browse the repository at this point in the history
closes #50
  • Loading branch information
JeelRajodiya committed Jul 30, 2024
1 parent ec1d687 commit d1bbb15
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/components/NavBarMenus/NavBarMenus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
} from "@chakra-ui/react";
import React, { useState } from "react";
import navBarStyles from "../NavBar/NavBar.module.css";
import style from "react-syntax-highlighter/dist/esm/styles/hljs/a11y-dark";

export default function NavBarMenu() {
const { colorMode } = useColorMode();
Expand Down Expand Up @@ -61,7 +62,13 @@ export default function NavBarMenu() {
Reset progress
</MenuItem>
</PopoverTrigger>
<PopoverContent>
<PopoverContent
rootProps={{
style: {
transform: "scale(0)",
},
}}
>
<PopoverArrow />
<PopoverCloseButton />
<PopoverHeader>Confirmation!</PopoverHeader>
Expand Down

0 comments on commit d1bbb15

Please sign in to comment.