1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00

fix: disable hover:underline on link of Respository (open source)

This commit is contained in:
Divlo 2021-07-27 18:31:41 +02:00
parent 52870fd6a4
commit 3b208c6614
No known key found for this signature in database
GPG Key ID: 6F24DA54DA3967CF

View File

@ -15,9 +15,7 @@ export const Repository: React.FC<RepositoryProps> = (props) => {
<a href={href} target='_blank' rel='noopener noreferrer'>
<div className='flex'>
<GitHubIcon className='h-6 mr-2' />
<span className='text-yellow dark:text-yellow-dark hover:underline'>
{name}
</span>
<span className='text-yellow dark:text-yellow-dark'>{name}</span>
</div>
<p className='my-4'>{description}</p>
</a>