Skip to content

Commit

Permalink
fix: correct styling, pointer events none (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Apr 9, 2024
1 parent 32fdccf commit 513475e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
top: 0;
right: 0;
max-width: 30%;
pointer-events: none;
}

@keyframes fadeIn {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@
position: absolute;
bottom: 0;
right: 0;
pointer-events: none;

display: none;

Expand All @@ -186,6 +187,7 @@

.lines {
position: absolute;
pointer-events: none;
max-width: 30%;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ const Splash = memo(() => {

return (
<div className={cn.container}>
<GridBackground positions={[{ top: 0, left: 0 }]} isLight={true} />

<img
src={tl_clouds}
alt=""
Expand All @@ -54,8 +56,6 @@ const Splash = memo(() => {
className={clsx(cn.decoration, cn.br_star_stripe, "wait flopR")}
/>

<GridBackground positions={[{ top: 0, left: 0 }]} isLight={true} />

<SplashLogo ref={logoRef} className={cn.logo} />

<div className={clsx(cn.info, "wait")}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@

.decoration {
position: absolute;
pointer-events: none;

max-width: 30%;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@

.tape {
position: absolute;
pointer-events: none;
top: -5%;
left: 50%;
transform: translateX(-50%);
Expand All @@ -76,6 +77,7 @@
position: absolute;

max-width: 50%;
pointer-events: none;
}

.tr {
Expand Down

0 comments on commit 513475e

Please sign in to comment.