diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-04-16 22:20:51 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-04-16 22:30:20 -0700 |
| commit | fcf822c966df58ae08a491aababdd6bb2bb0fea4 (patch) | |
| tree | 67962c6318f9bb57da949a00a3cd8f3301d86970 /src/app/styles/shared.ts | |
| parent | c40d302688c1ac21f49a8761ad606ef6dcd07531 (diff) | |
add some initial set of karaoke examples
Diffstat (limited to 'src/app/styles/shared.ts')
| -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; + } +`; |
