Skip to content

Commit

Permalink
make text darker for consistency with pathoplexus below
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed May 22, 2024
1 parent 13e0ce2 commit e419ea5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions website/src/components/IndexPage/OrganismCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const { key, image, displayName, organismStatistics, numberDaysAgoStatistics } =
class='block rounded border border-gray-300 p-4 m-2 w-64 text-center hover:bg-gray-100'
>
{image !== undefined && <img src={image} class='h-32 mx-auto mb-4' alt={displayName} />}
<h3 class='font-semibold text-gray-700'>{displayName}</h3>
<p class='text-gray-700 text-sm'>
<h3 class='font-semibold'>{displayName}</h3>
<p class=' text-sm'>
{organismStatistics.totalSequences} sequences<br />
(+{organismStatistics.recentSequences} in last {numberDaysAgoStatistics} days)<br />
{organismStatistics.lastUpdatedAt && <>Last updated {organismStatistics.lastUpdatedAt.toRelative()}</>}
Expand Down
4 changes: 2 additions & 2 deletions website/src/components/IndexPage/WelcomeMessage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
const websiteName = Astro.props.websiteName;
---

<p class='text-gray-700 my-4'>
<p class=' my-4'>
Welcome to {websiteName}, a system for sharing pathogen genome data.
</p>

<h2 class='font-semibold text-gray-700 my-3 text-lg'>Explore {websiteName} data!</h2>
<h2 class='font-semibold my-3 text-lg'>Explore {websiteName} data!</h2>

0 comments on commit e419ea5

Please sign in to comment.