diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-10-30 16:47:19 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-10-30 16:47:19 -0400 |
| commit | 610f6839d2e449d172aa6ac35e6c1de0677a0754 (patch) | |
| tree | 3b402556762cba68008487e4adbc448231c37037 /ui/routes/(app)/+layout.svelte | |
| parent | 0b4e900c35d540f6047fc29863c174e96ff20d0b (diff) | |
Add more mobile styling
Diffstat (limited to 'ui/routes/(app)/+layout.svelte')
| -rw-r--r-- | ui/routes/(app)/+layout.svelte | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/ui/routes/(app)/+layout.svelte b/ui/routes/(app)/+layout.svelte index c337b3f..9fcdf41 100644 --- a/ui/routes/(app)/+layout.svelte +++ b/ui/routes/(app)/+layout.svelte @@ -63,6 +63,10 @@ }); </script> +<svelte:head> + <title>understory</title> +</svelte:head> + {#if loading} <h2>Loading…</h2> {:else} @@ -90,21 +94,19 @@ <style> :root { - --app-bar-height: 5rem; + --app-bar-height: 68px; --input-row-height: 2rem; } #interface { margin: unset; - /* min-block-size: 100%;*/ display: grid; grid-template: 'side main' 1fr / auto 1fr ; - @media (width > 50em) { - --toggle-display: none; + @media (width > 640px) { --overlay: static; --translate: 0; } @@ -139,8 +141,4 @@ main { nav[data-expanded=false] { translate: var(--translate, -100% 0); } -[aria-controls="sidebar"] { - display: var(--toggle-display, revert); -} - </style> |
