Skip to content

Commit

Permalink
fixed styling build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RikhiSingh committed May 11, 2024
1 parent 568e1fe commit 2c05087
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/components/transitionProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ const TransitionProvider = ({ children }) => {
<AnimatePresence mode="wait">
<div key={pathName} className="w-screen h-screen bg-gradient-to-b from-blue-100 to-red-100">
{/* <!-- Google Tag Manager (noscript) --> */}
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MDG9CTG7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MDG9CTG7"
height="0" width="0" style={{ display: "none", visibility: "hidden" }}>
</iframe>
</noscript>
{/* <!-- End Google Tag Manager (noscript) --> */}

<motion.div
className="h-screen w-screen fixed bg-black rounded-b-[100px] z-40"
animate={{ height: "0vh" }}
Expand All @@ -33,7 +37,7 @@ const TransitionProvider = ({ children }) => {
className="h-screen w-screen fixed bg-black rounded-t-[100px] bottom-0 z-30"
initial={{ height: "140vh" }}
animate={{ height: "0vh", transition: { delay: 0.5 } }}
/>
/>
<div className="h-24">
<Navbar />
</div>
Expand Down

0 comments on commit 2c05087

Please sign in to comment.