Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
ezralazuardy committed Dec 2, 2024
1 parent 1a6930a commit 94bdfd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/ui/gallery/tiles.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export default function Tiles() {
});

return (
<div className="flex w-full h-full max-h-screen">
<div className="flex w-full min-h-screen">
{!canvasReady ? (
<div ref={loading} className="flex w-full h-full max-h-screen z-10">
<div ref={loading} className="flex w-full min-h-screen z-10">
<div className="flex w-full my-auto justify-center">
<BlurFade delay={0.25 + 6 * 0.05} inView>
<Loading />
Expand All @@ -47,7 +47,7 @@ export default function Tiles() {
</div>
) : null}
{showCanvas ? (
<div className="absolute w-full h-full max-h-screen z-20">
<div className="absolute w-full min-h-screen z-20">
<Canvas
style={{ width: "100%", height: "100vh" }}
gl={{ antialias: false, performance: "low-power" }}
Expand Down

0 comments on commit 94bdfd9

Please sign in to comment.