From 6da54d71157dd2353e6950804e296b8569cca425 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Tue, 12 May 2026 23:49:40 +0200 Subject: [PATCH] style: declutter buildpulse mobile header --- package.json | 2 +- src/App.tsx | 2 +- src/index.css | 29 +++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a64465b..023a77b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "buildpulse", "private": true, - "version": "0.4.6", + "version": "0.4.7", "type": "module", "scripts": { "api": "node --env-file=../.env server/index.mjs", diff --git a/src/App.tsx b/src/App.tsx index eab344d..f904111 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1580,7 +1580,7 @@ function App() {
-

BuildPulse v0.4.6

+

BuildPulse v0.4.7

BuildPulse

Current goal: {appState.project.current_goal || 'Classify new ideas before they become work.'} diff --git a/src/index.css b/src/index.css index 059adab..b6d5b74 100644 --- a/src/index.css +++ b/src/index.css @@ -3230,3 +3230,32 @@ button.ghost, flex: 0 0 auto; } } + +/* v0.4.7 — stop wasting the first screen on a squeezed goal sentence. */ +@media (max-width: 760px) { + .mobile-shell-header.card { + align-items: center; + min-height: 2.55rem; + } + + .compact-goal { + display: none; + } + + .tab-bar { + margin-top: 0.22rem; + } + + .today-card > .section-heading { + padding-top: 0.32rem; + padding-bottom: 0.5rem; + } + + .today-card .section-heading h2 { + font-size: clamp(0.98rem, 5vw, 1.08rem); + } + + .today-command-bar { + margin-top: 0.55rem; + } +}