diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-22 18:33:33 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-22 18:33:45 -0700 |
| commit | e342cfabd7d7239e54f60216a4eab45740fe9aac (patch) | |
| tree | ee8483b338ed78b1efb69c28e5e8b23550d4419d /src/app/page.styles.ts | |
| parent | 78a7a2869386d54f7aee56817fa254784ba39e3b (diff) | |
Diffstat (limited to 'src/app/page.styles.ts')
| -rw-r--r-- | src/app/page.styles.ts | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/app/page.styles.ts b/src/app/page.styles.ts index 468566a..d3bad8b 100644 --- a/src/app/page.styles.ts +++ b/src/app/page.styles.ts @@ -9,7 +9,6 @@ import { NavCtaLink as BaseNavCtaLink, } from "./styles/shared"; -// ── Base components (previously in the old app/page.styles.ts) ─────────────── const BaseNavLeft = styled.div` display: flex; @@ -206,6 +205,12 @@ const BaseCardSub = styled.span` line-height: 1.3; `; +const BaseCardTag = styled.span` + font-size: 10px; + color: #909090; + line-height: 1.3; +`; + const BaseEmptyState = styled.div` grid-column: 1 / -1; padding: 48px 0; @@ -214,7 +219,6 @@ const BaseEmptyState = styled.div` color: #909090; `; -// ── Dark-themed exports ─────────────────────────────────────────────────────── export { GridContainer as BaseGridContainer }; @@ -327,6 +331,13 @@ export const CardSub = styled(BaseCardSub)` color: #9aa0ad; `; +export const CardTag = styled(BaseCardTag)` + display: inline-block; + color: #b8bcc7; + font-size: 10px; + white-space: nowrap; +`; + export const EmptyState = styled(BaseEmptyState)` color: #9aa0ad; `; |
