Skip to content

Commit 1d0593d

Browse files
authored
Merge pull request #139 from w3bdesign/development
Development
2 parents 5a247f0 + 44bee6f commit 1d0593d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

pnpm-lock.yaml

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Index/Hero.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import FadeDown from "@/components/Animations/FadeDown.component";
55
import FadeUp from "@/components/Animations/FadeUp.component";
66
import RotatingLoader from "../Animations/RotatingLoader.component";
77
const ReactMatrixAnimation = React.lazy(
8-
() => import("../Animations/Matrix.component")
8+
() => import("../Animations/Matrix.component"),
99
);
1010

1111
type THero = { text: string };

src/components/Layout/MobileMenu.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const MobileMenu = ({ links }: IMobileMenuProps) => {
112112
data-testid="mobile-menu"
113113
data-cy="mobile-menu"
114114
aria-hidden={!isExpanded}
115-
className="fixed top-0 right-0 w-screen h-screen bg-gray-800 flex items-center justify-center -z-10 -mt-4"
115+
className="fixed top-0 right-0 w-[calc(100vw+20px)] h-[calc(100vh+20px)] bg-gray-800 flex items-center justify-center -z-10 -mt-4"
116116
initial="closed"
117117
animate="open"
118118
exit="closed"

0 commit comments

Comments
 (0)