feat: mobile-first redesign (warm notebook aesthetic, thumb-zone capture bar)
- Editorial masthead (Fraunces + Spline Sans), warm paper/ink palette with terracotta accent, matching dark mode - Thumb-zone composer: single capture input + round submit, optional note toggle, refocus after add for rapid capture - Mobile-first CSS: 44-50px touch targets, 16px inputs (no iOS zoom), edge-to-edge scroll-snap list chips, safe-area insets, tap-highlight off, contained overscroll; desktop as min-width enhancement - Staggered task-card entrance (reduced-motion aware), themed empty states - Head: theme-color light/dark, Apple web-app metas, lang attr, font preconnect Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -17,9 +17,23 @@ export default defineNuxtConfig({
|
||||
app: {
|
||||
head: {
|
||||
title: "ClaudeDo Inbox",
|
||||
htmlAttrs: { lang: "en" },
|
||||
meta: [
|
||||
{ name: "viewport", content: "width=device-width, initial-scale=1, viewport-fit=cover" },
|
||||
{ name: "color-scheme", content: "light dark" },
|
||||
{ name: "theme-color", media: "(prefers-color-scheme: light)", content: "#f4f1ea" },
|
||||
{ name: "theme-color", media: "(prefers-color-scheme: dark)", content: "#181410" },
|
||||
{ name: "apple-mobile-web-app-capable", content: "yes" },
|
||||
{ name: "apple-mobile-web-app-status-bar-style", content: "default" },
|
||||
{ name: "apple-mobile-web-app-title", content: "ClaudeDo" },
|
||||
],
|
||||
link: [
|
||||
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
|
||||
{ rel: "preconnect", href: "https://fonts.gstatic.com", crossorigin: "" },
|
||||
{
|
||||
rel: "stylesheet",
|
||||
href: "https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600&family=Spline+Sans:wght@400;500;600&display=swap",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user