diff options
Diffstat (limited to 'src/app/styles')
| -rw-r--r-- | src/app/styles/shared.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/app/styles/shared.ts b/src/app/styles/shared.ts index ad815ea..d1b0232 100644 --- a/src/app/styles/shared.ts +++ b/src/app/styles/shared.ts @@ -59,3 +59,20 @@ export const NavLink = styled(Link)` color: #1a1a1a; } `; + +export const NavCtaLink = styled(Link)` + font-size: 13px; + font-weight: 600; + color: #1a1a1a; + text-decoration: none; + padding: 6px 12px; + border-radius: 999px; + background-color: #f5f5f5; + border: 1px solid #e5e5e5; + transition: background-color 0.15s, border-color 0.15s, color 0.15s; + &:hover { + background-color: #ededed; + border-color: #d4d4d4; + color: #1a1a1a; + } +`; |
