Skip to content

Commit

Permalink
Fixed wrong spacing of links
Browse files Browse the repository at this point in the history
  • Loading branch information
Midlou committed Feb 7, 2024
1 parent b750d19 commit 0fad892
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pages/index.astro
Expand Up @@ -37,9 +37,7 @@ const TITLE = 'Home';
{
PROFILE_ITEMS.map((item, index) => {
return <span>
<a href={item.link} target={"_blank"} rel={"noreferrer"} tab-index={0} class="default-focus-light underline text-blue-400 hover:text-blue-500">
{item.label}
</a>
<a href={item.link} target={"_blank"} rel={"noreferrer"} tab-index={0} class="default-focus-light underline text-blue-400 hover:text-blue-500">{item.label}</a>
{
PROFILE_ITEMS.length - 1 == index
? null
Expand Down

0 comments on commit 0fad892

Please sign in to comment.