aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/main.tsx
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2024-07-22 16:31:12 +0100
committerGitHub <noreply@github.com>2024-07-22 16:31:12 +0100
commit95cef714902bbcbdc3ef016457e7a77d38293ea8 (patch)
tree9d51eca20a381dedbb44ab16622fc08dffc269fb /ui/src/main.tsx
parentchore(deps): bump highlight.js from 11.9.0 to 11.10.0 in /ui (#2298) (diff)
downloadatuin-95cef714902bbcbdc3ef016457e7a77d38293ea8.zip
feat(gui): background terminals and more (#2303)
* fixes & allow for background terminals to stay running * status indicators etc
Diffstat (limited to 'ui/src/main.tsx')
-rw-r--r--ui/src/main.tsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/ui/src/main.tsx b/ui/src/main.tsx
index 58cfd77b..96d570a3 100644
--- a/ui/src/main.tsx
+++ b/ui/src/main.tsx
@@ -8,8 +8,14 @@ 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 min-h-8 absolute z-10" />
- <App />
+ <div
+ data-tauri-drag-region
+ className="w-full min-h-8 z-10 border-b-1"
+ />
+
+ <div className="z-20 ">
+ <App />
+ </div>
</main>
</NextUIProvider>
</React.StrictMode>,