Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
Reach 100 in accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
hlassiege committed Nov 12, 2023
1 parent 1f637da commit bf03743
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions components/BlogCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@
/>
</NuxtLink>
<div class="p-3">
<div class="text-xs text-slate-400 left-2">
<div class="text-xs text-slate-500 left-2">
{{ formatDate(postDate) }}
</div>
<h5 class="text-lg font-bold">
<h3 class="text-lg font-bold">
<NuxtLink class="overflow-hidden" :to="postLink">
{{ postTitle }}
</NuxtLink>
</h5>
</h3>

<p class="mt-2 text-[12px] my-3 flex flex-wrap -m-1">
<a
v-for="tag in tags"
:key="tag"
:href="'/blog?tag=' + tag"
:aria-label="`More about ${tag}`"
class="m-1 leading-loose text-slate-400 border border-current lowercase px-2 rounded font-medium"
class="m-1 leading-loose text-slate-500 border border-current lowercase px-2 rounded font-medium"
@click.prevent="$emit('changeCurrentTag', tag)"
>#{{ tag }}</a
>
Expand Down
10 changes: 5 additions & 5 deletions components/TheFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class="text-sm text-gray-500 transition hover:text-gray-600"
>
<img
alt="RSS"
alt="Icon for RSS feed"
class="transition-transform hover:scale-110 w-8 h-8"
src="~assets/icon/rss.svg"
/>
Expand All @@ -22,7 +22,7 @@
:href="siteMetadata.mastodon"
><span class="sr-only">Mastodon</span>
<img
alt="Mastodon"
alt="Icon for Mastodon"
class="transition-transform hover:scale-110 w-8 h-8"
src="~assets/icon/mastodon.svg"
/>
Expand All @@ -35,7 +35,7 @@
:href="siteMetadata.github"
><span class="sr-only">github</span>
<img
alt="github"
alt="Icon for Github"
class="transition-transform hover:scale-110 w-8 h-8"
src="~assets/icon/github_new.svg"
/> </a
Expand All @@ -47,7 +47,7 @@
:href="siteMetadata.linkedin"
><span class="sr-only">Linkedin</span>
<img
alt="Linkedin"
alt="Icon for Linkedin"
class="transition-transform hover:scale-110 w-8 h-8"
src="~assets/icon/linkeding.svg"
/>
Expand All @@ -60,7 +60,7 @@
class="text-sm text-gray-500 transition hover:text-gray-600"
>
<img
alt="Twitter"
alt="Icon for Twitter"
class="transition-transform hover:scale-110 w-8 h-8"
src="~assets/icon/twitter.svg"
/>
Expand Down

0 comments on commit bf03743

Please sign in to comment.