diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2024-07-15 19:12:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-15 19:12:01 +0100 |
| commit | 7eb985b616c12aed261fbef74a47c5a928c03e61 (patch) | |
| tree | fe3088dc687c640176bf376b4ca8baf2088bd69f /ui/src/main.tsx | |
| parent | chore(deps): bump cachix/install-nix-action from 20 to 27 (#2268) (diff) | |
| download | atuin-7eb985b616c12aed261fbef74a47c5a928c03e61.zip | |
feat(gui): add runbook list, ability to create and delete, sql storage (#2282)
* wip
* saving works :))
* functioning delete button
* persist selection properly
Diffstat (limited to 'ui/src/main.tsx')
| -rw-r--r-- | ui/src/main.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/src/main.tsx b/ui/src/main.tsx index dc4c24a3..074552f7 100644 --- a/ui/src/main.tsx +++ b/ui/src/main.tsx @@ -7,8 +7,10 @@ import "./styles.css"; ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( <React.StrictMode> <NextUIProvider> - <div data-tauri-drag-region className="w-full h-8 absolute" /> - <App /> + <main className="text-foreground bg-background"> + <div data-tauri-drag-region className="w-full h-8 absolute" /> + <App /> + </main> </NextUIProvider> </React.StrictMode>, ); |
