Skip to content

Commit

Permalink
fix: schedule tabs can be clicked on through fireworks (#358)
Browse files Browse the repository at this point in the history
* fix: schedule tabs can be clicked on through fireworks

* Applied overflow: hidden to SceneLayout.tsx
  • Loading branch information
IanWearsHat authored Jan 26, 2024
1 parent 5a4aeaa commit de9efd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const ShiftingCountdown = () => {
{countdown.showFireworks && (
<div className="flex justify-center">
<Fireworks
className="w-full h-full absolute"
className="w-full h-full absolute pointer-events-none"
options={{
opacity: 0.1,
}}
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/components/dom/SceneLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const SceneLayout = ({ children }: PropsWithChildren) => {
position: "relative",
width: " 100%",
height: "100%",
overflowX: "hidden",
overflow: "hidden",
touchAction: "auto",
}}
>
Expand Down

0 comments on commit de9efd5

Please sign in to comment.