diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2024-07-16 11:32:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-16 11:32:14 +0100 |
| commit | 97d978c267f2819714cf2df4999dba56bdde31d5 (patch) | |
| tree | b1e283851593b8de5266a4c6b5ff4e2c557845be /ui/src/main.tsx | |
| parent | docs(gui): update README (#2283) (diff) | |
| download | atuin-97d978c267f2819714cf2df4999dba56bdde31d5.zip | |
fix(gui): terminal resize overflow (#2285)
Diffstat (limited to 'ui/src/main.tsx')
| -rw-r--r-- | ui/src/main.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/main.tsx b/ui/src/main.tsx index 074552f7..58cfd77b 100644 --- a/ui/src/main.tsx +++ b/ui/src/main.tsx @@ -8,7 +8,7 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( <React.StrictMode> <NextUIProvider> <main className="text-foreground bg-background"> - <div data-tauri-drag-region className="w-full h-8 absolute" /> + <div data-tauri-drag-region className="w-full min-h-8 absolute z-10" /> <App /> </main> </NextUIProvider> |
