Skip to content

Commit

Permalink
style: Change backlink button design
Browse files Browse the repository at this point in the history
  • Loading branch information
0xwonj committed Apr 2, 2024
1 parent 361149c commit 72c3364
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/BackLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ export default function BackLink(props) {
href={backLink}
className={`${titleColorClasses['after-bg-500']} group relative mr-auto overflow-hidden text-blue-100 after:absolute after:right-full after:top-0 after:z-[-1] after:size-full after:duration-200 hover:after:translate-x-full`}
>
<p className="duration-200 group-hover:text-[#030615]">&larr; Back</p>
<p className="font-press-start duration-200 group-hover:text-[#030615]">
<i className="fa-solid fa-arrow-left text-xl"></i>
<span className="ml-3 text-sm">Back</span>
</p>
</Link>
);
}

0 comments on commit 72c3364

Please sign in to comment.