Skip to content

Commit

Permalink
some final tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
k2xl committed May 19, 2024
1 parent 98113e9 commit 9786670
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 @@ -67,7 +67,7 @@ export default function PostGameModal({ chapter, closeModal, collection, dontSho
id='next-level'
level={nextLevel}
onClick={closeModal}
title='Next Level'
title={'The next level is \'' + nextLevel.name + '\'...'}
/>
);
}
Expand Down Expand Up @@ -107,7 +107,7 @@ export default function PostGameModal({ chapter, closeModal, collection, dontSho
isOpen={isOpen}
title={
<div
className='fadeIn'
className='fadeIn text-yellow-300 text-3xl font-bold italic'
style={{
animationDelay: '0.2s',
}}
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 thoughts on the level you just beat</summary>
}} className='text-xs cursor-pointer italic py-1 hover:text-blue-300'>Share thoughts on the level you just won.</summary>
<FormattedLevelReviews hideReviews={true} inModal={true} />
</details>
}
Expand Down

0 comments on commit 9786670

Please sign in to comment.