Skip to content

Commit

Permalink
Update App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Nov 11, 2024
1 parent 2d3b384 commit 29d2bde
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions taxonium_website/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,21 +190,21 @@ function App() {
</>
)}
{window.screen.width >= 600 && (
<>
<span className="font-medium ">{title}</span>
<div className="flex flex-row mt-4">
<CgListTree className="h- ml-1 w-4 mr-1" />
<span className="text-xs ml-1">visualised with </span>
<a
href="/"
className="underline hover:no-underline text-xs ml-0.5"
target="_top"
>
<span>Taxonium</span>
</a>
</div>
</>
)}
<>
<span className={`font-medium ${title.length > 12 ? 'text-lg' : ''}`}>{title}</span>
<div className="flex flex-row mt-4">
<CgListTree className="h- ml-1 w-4 mr-1" />
<span className="text-xs ml-1">visualised with </span>

href="/"
className="underline hover:no-underline text-xs ml-0.5"
target="_top"
>
<span>Taxonium</span>
</a>
</div>
</>
)}
</>
) : (
<a href="/" className="hover:underline" target="_top">
Expand Down

0 comments on commit 29d2bde

Please sign in to comment.