aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/main.tsx
diff options
context:
space:
mode:
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>,