Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Oct 7, 2023
1 parent 9099db9 commit 6c83176
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
0% {
transform: scale(1) translateY(0);
}
10% {
transform: scale(1.05) translateY(-10%);
}
99% {
transform: scale(0.5) translateY(100%);
transform: scale(0.95) translateY(100%) rotate(5deg);
}
100% {
transform: scale(0);
Expand Down
4 changes: 2 additions & 2 deletions components/POAPModal/Creeper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export const Creeper = () => {
return (
<div
className={cslx(
'absolute top-0 left-4 h-12 sm:w-32 -z-10',
clickCount > 5 ? 'animate-creeper-out' : 'hidden xs:block' // -translate-y-[1px]
'absolute -top-12 left-4 h-12 sm:w-32 -z-10',
clickCount > 5 ? 'animate-creeper-out' : 'hidden xs:block'
)}
>
<div
Expand Down

0 comments on commit 6c83176

Please sign in to comment.