Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
k2xl committed May 19, 2024
1 parent d806607 commit 98113e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/modal/postGameModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function PostGameModal({ chapter, closeModal, collection, dontSho

onSubmit={nextLevel && onNextLevelClick}
submitLabel='Next Level'
submitBtnClass={'bg-blue-500'}
submitBtnClass={'bg-blue-500 hover:bg-blue-700'}
closeModal={closeModal}
isOpen={isOpen}
title={
Expand All @@ -112,7 +112,7 @@ export default function PostGameModal({ chapter, closeModal, collection, dontSho
animationDelay: '0.2s',
}}
>
Congratulations!
You win!
</div>
}
>
Expand Down Expand Up @@ -145,7 +145,7 @@ export default function PostGameModal({ chapter, closeModal, collection, dontSho
<summary onClick={(e: React.MouseEvent) => {
// make this element invisible
(e.target as HTMLElement).style.display = 'none';
}} className='text-xs cursor-pointer italic py-1 hover:text-blue-300'>Share your thoughts on {level.name}</summary>
}} className='text-xs cursor-pointer italic py-1 hover:text-blue-300'>Share thoughts on the level you just beat</summary>
<FormattedLevelReviews hideReviews={true} inModal={true} />
</details>
}
Expand Down

0 comments on commit 98113e9

Please sign in to comment.