Skip to content

Commit

Permalink
Merge pull request #70 from web3wagers/dev
Browse files Browse the repository at this point in the history
[fix] Stardust absolute position
  • Loading branch information
adrianvrj authored Sep 2, 2024
2 parents 58cbe42 + 586e74e commit 4680aa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/gostarkme-web/.env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ROOT = ""
NEXT_PUBLIC_APP_ROOT = "/"
2 changes: 1 addition & 1 deletion frontend/gostarkme-web/animations/StardustAnimation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ export const StardustAnimation = () => {
};
}, []);

return <canvas ref={canvasRef} className="absolute top-0 left-0 w-full h-full" />;
return <canvas ref={canvasRef} className="relative top-0 left-0 w-full h-full" style={{position: 'absolute'}} />;
};

0 comments on commit 4680aa9

Please sign in to comment.