diff --git a/packages/ui/src/App.tsx b/packages/ui/src/App.tsx index 705301dba..65549b901 100644 --- a/packages/ui/src/App.tsx +++ b/packages/ui/src/App.tsx @@ -13,6 +13,35 @@ function App() { const [developerMode, setDeveloperMode] = useState(false); const [menuOpen, setMenuOpen] = useState(false); + const navStyle: React.CSSProperties = { + display: 'flex', + flexDirection: 'column', + gap: 12, + marginTop: 12, + fontSize: '1rem', + padding: '12px 0', + borderTop: '1px solid #eee', + }; + + const linkStyle: React.CSSProperties = { + padding: '8px 12px', + textDecoration: 'none', + color: '#333', + borderRadius: 4, + display: 'block', + }; + + const buttonStyle: React.CSSProperties = { + padding: '8px 12px', + background: '#f0f0f0', + border: '1px solid #ccc', + borderRadius: 4, + cursor: 'pointer', + fontSize: '1rem', + minWidth: 44, + minHeight: 44, + }; + return (
@@ -21,46 +50,34 @@ function App() {
{menuOpen && ( -