- index.html: inline anti-FOUC CSS so sidebar stays hidden on mobile before the JS bundle hydrates (eliminates ~100ms flash of sidebar) - InventoryList: scan-mode-toggle fills card width on <=480px so buttons don't overflow; mode button labels hidden on <=360px (icons only) - Very narrow phones get icon-only mode toggle, all three buttons still accessible via aria-label
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<title>Kiwi — Pantry Tracker</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<!-- Anti-FOUC: critical layout CSS inline so it's available before the JS bundle.
|
|
Without this, the sidebar flashes visible on mobile for ~100ms while the
|
|
bundle hydrates and injects component styles. -->
|
|
<style>
|
|
.sidebar { display: none; }
|
|
.bottom-nav { display: flex; }
|
|
@media (min-width: 769px) {
|
|
.sidebar { display: flex; flex-direction: column; }
|
|
.bottom-nav { display: none; }
|
|
.app-body { display: flex; flex-direction: column; flex: 1; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|