Skip to content

Commit

Permalink
style: set pointer-events: none for graphics (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Apr 3, 2024
1 parent 624b9d7 commit ab670a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
.airplane {
position: absolute;
max-width: 125px;
pointer-events: none;

bottom: 0px;
right: 10px;
Expand All @@ -51,6 +52,7 @@
.paperclip {
position: absolute;
max-width: 75px;
pointer-events: none;

top: 320px;
left: -24px;
Expand All @@ -75,6 +77,7 @@
max-width: 200px;
bottom: 16px;
left: 0px;
pointer-events: none;

@media screen and (min-width: 640px) {
max-width: 500px;
Expand All @@ -86,11 +89,13 @@
max-width: 50%;
top: 0px;
right: 0px;
pointer-events: none;
}

.gradient {
max-width: 300px;
top: -100px;
pointer-events: none;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
position: absolute;
width: 66%;
z-index: 5;
pointer-events: none;

top: -5%;
left: 50%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
.hearts {
position: absolute;
width: 25%;
pointer-events: none;

top: 2%;
right: 2%;
Expand Down

0 comments on commit ab670a8

Please sign in to comment.