Skip to content

Commit

Permalink
Update App.jsx (#631)
Browse files Browse the repository at this point in the history
* Update App.jsx

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update App.jsx

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
theosanderson and pre-commit-ci[bot] authored Nov 11, 2024
1 parent 2d3b384 commit 425e9ec
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion taxonium_website/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,13 @@ function App() {
)}
{window.screen.width >= 600 && (
<>
<span className="font-medium ">{title}</span>
<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>
Expand Down

0 comments on commit 425e9ec

Please sign in to comment.