diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-04-16 17:22:27 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-04-16 17:22:27 -0700 |
| commit | 5709b7323ca39dd1397720fc0b13a587638967f1 (patch) | |
| tree | 59e643ee6243b2d54a24ff121f6f615a359b3371 /src/app/game/page.styles.ts | |
| parent | d5fe045b361a3735509bfa2549efa0bd185bc7de (diff) | |
add estimated CPS needed to type current line
Diffstat (limited to 'src/app/game/page.styles.ts')
| -rw-r--r-- | src/app/game/page.styles.ts | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/app/game/page.styles.ts b/src/app/game/page.styles.ts index e8a2678..da45d8a 100644 --- a/src/app/game/page.styles.ts +++ b/src/app/game/page.styles.ts @@ -149,6 +149,7 @@ export const UpcomingText = styled.p` font-size: 20px; color: rgba(255, 255, 255, 0.30); font-weight: 400; + font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif; min-height: 28px; white-space: nowrap; overflow: hidden; @@ -164,11 +165,18 @@ export const CurrentWrap = styled.div` gap: 10px; `; +export const LineTimingRow = styled.div` + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; +`; + export const LineTimingMeta = styled.div` display: flex; align-items: center; - justify-content: flex-end; - font-size: 11px; + justify-content: flex-start; + font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); @@ -219,7 +227,7 @@ export const CharBox = styled.span<{ justify-content: center; font-size: 36px; font-weight: 700; - font-family: monospace; + font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif; padding: 0 3px; border-radius: 4px; transition: all 0.08s ease; |
