Skip to content

Commit

Permalink
fix(components-LandingNavLink): re-design links for landing page (#1064)
Browse files Browse the repository at this point in the history
- White text.
- Gradient underline.
- Rounded border.
  • Loading branch information
sabertazimi committed Mar 8, 2023
1 parent d00e508 commit d2aa174
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion components/LandingNav/LandingNavLink.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
.link {
@apply mx-6 my-0 block cursor-pointer border-b-6 border-solid border-light px-0 pt-0 pb-3 text-4xl font-extrabold leading-none text-light md:text-7xl;
@apply relative mx-6 my-0 block cursor-pointer px-0 pt-0 pb-3;
}

.link a {
@apply text-4xl font-extrabold leading-none text-light md:text-7xl;
}

.link::after {
@apply absolute left-0 top-full h-2 w-full;
@apply bg-gradient-primary rounded-lg;

content: '';
}

.tooltip {
Expand Down

1 comment on commit d2aa174

@vercel
Copy link

@vercel vercel bot commented on d2aa174 Mar 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blog – ./

blog-sabertaz.vercel.app
blog-git-main-sabertaz.vercel.app
blog.tazimi.dev

Please sign in to comment.