mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-10 16:10:59 +00:00
e9e0a4e813
- Replace h-screen with h-dvh for correct mobile viewport height - Fix input font-size to 16px on mobile preventing iOS Safari auto-zoom - Add safe area padding for notched devices (Dynamic Island, home indicator) - Expand touch targets for icon buttons to ≥44px on touch devices - Make dialogs full-screen on mobile with slide-up animation - Add virtual keyboard detection for chat input positioning - Smooth auto-scroll for incoming messages, instant scroll on user send - Add overflow-x-auto to table pages for mobile horizontal scroll - Fix grid layouts to stack on mobile (grid-cols-1 sm:grid-cols-2) - Safe-area-aware toast positioning - Landscape compact mode for phone landscape orientation
14 lines
388 B
HTML
14 lines
388 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<title>GoClaw Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|