mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-22 06:54:26 +00:00
polish(app): splash wordmark in brand orange + version line
CodeBurn wordmark on the splash now uses --accent (matching the website/sidebar brand treatment) with the app version (v0.1.0, from package.json at build time) in muted small text below. App version bumped 0.0.0 -> 0.1.0. 253/253, build green.
This commit is contained in:
parent
4b1426eab2
commit
1320807de2
3 changed files with 7 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "codeburn-desktop",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"version": "0.1.0",
|
||||
"description": "CodeBurn Desktop — Electron app fed by the codeburn CLI",
|
||||
"main": "dist/electron/main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import { createPortal } from 'react-dom'
|
|||
|
||||
import { FlameMark } from './FlameMark'
|
||||
import { motionClass, reducedMotion } from '../lib/motion'
|
||||
import { version } from '../../package.json'
|
||||
|
||||
const MIN_ON_SCREEN_MS = 600
|
||||
const CROSSFADE_MS = 250
|
||||
|
|
@ -58,6 +59,7 @@ export function Splash({ hasData, hasError }: { hasData: boolean; hasError: bool
|
|||
<FlameMark size={76} />
|
||||
</div>
|
||||
<div className="splash-word">CodeBurn</div>
|
||||
<div className="splash-version">v{version}</div>
|
||||
</div>,
|
||||
document.body,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -860,7 +860,10 @@ td:first-child { font-size: var(--fs-body); font-weight: var(--fw-body); }
|
|||
opacity: 0.5;
|
||||
}
|
||||
.splash-word {
|
||||
font-size: var(--fs-kpi); font-weight: var(--fw-strong); letter-spacing: -0.01em; color: var(--ink);
|
||||
font-size: var(--fs-kpi); font-weight: var(--fw-strong); letter-spacing: -0.01em; color: var(--accent);
|
||||
}
|
||||
.splash-version {
|
||||
margin-top: 2px; font-size: var(--fs-label); font-weight: var(--fw-body); color: var(--mut);
|
||||
}
|
||||
|
||||
.splash-lit .splash-mark {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue