Add link hover

This commit is contained in:
Maria Rushkova 2021-08-06 15:38:34 +02:00 committed by Jakub Sokołowski
parent c2ee656b03
commit e0b60693d7
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
<li class="flex flex-col w-full sm:w-1/2 lm:max-w-screen-xs mb-5 lg:mb-8">
<time class="text-xxs opacity-75"
>{{ mediapost.date | date: '%B %d, %Y' }}</time
><a href="{{ mediapost.link }}" class="text-xs lg:text-base font-semibold"
><a
href="{{ mediapost.link }}"
class="text-xs lg:text-base font-semibold hover:underline"
>{{ mediapost.title }}</a
>
</li>

View File

@ -2,7 +2,7 @@
<time class="text-xxs opacity-75">{{ post.date | date: '%B %d, %Y' }}</time
><a
href="{{ site.baseurl }}{{ post.url }}"
class="text-xs lg:text-base font-semibold"
class="text-xs lg:text-base font-semibold hover:underline"
>{{ post.title }}</a
>
</li>