Skip to content

Commit

Permalink
fix: title text under logo on mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldanielecki committed Aug 19, 2024
1 parent 538756b commit f48f182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/TopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const TopNav = () => {
height={50}
width={200}
/>
<p className={`windowWidth < 640 ? "text-md" : "text-lg"`}>
<p className={`${windowWidth < 768 ? "text-sm" : "text-xl"}`}>
🧪 Practice Exams Platform
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion public/sw.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f48f182

Please sign in to comment.