diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-11-26 02:13:39 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-11-26 02:15:38 -0500 |
| commit | 9da480d92c6d81139e77eb6542986cf588ae3386 (patch) | |
| tree | 20bcf90729b96d05f1c125e1497eeee0e0ba3948 | |
| parent | 26fb3e0b364d7201cf0dfd9e524473ffa20dfa33 (diff) | |
Don't sink the top bar so far down into the page.
| -rw-r--r-- | ui/routes/(app)/+layout.svelte | 2 | ||||
| -rw-r--r-- | ui/routes/+layout.svelte | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/routes/(app)/+layout.svelte b/ui/routes/(app)/+layout.svelte index bafd6b8..ad8227e 100644 --- a/ui/routes/(app)/+layout.svelte +++ b/ui/routes/(app)/+layout.svelte @@ -103,7 +103,7 @@ /* Just some global CSS variables, don't mind them. */ :root { - --app-bar-height: 68px; + --app-bar-height: 48px; --input-row-height: 2rem; --interface-padding: 16px; } diff --git a/ui/routes/+layout.svelte b/ui/routes/+layout.svelte index 8940659..26033e0 100644 --- a/ui/routes/+layout.svelte +++ b/ui/routes/+layout.svelte @@ -24,7 +24,7 @@ let { children } = $props(); </script> -<AppBar class="app-bar"> +<AppBar padding="px-4 pt-0 pb-4"> <svelte:fragment slot="lead"> <button onclick={toggleMenu} class="cursor-pointer"> <img class="w-8 h-8" alt="logo" src={logo} /> |
