Move some more stuff over

This commit is contained in:
Gregory Schier
2026-03-07 07:44:50 -08:00
parent ff6686f982
commit d99898f39b
13 changed files with 12 additions and 43 deletions

View File

@@ -3,6 +3,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { invoke } from "@tauri-apps/api/core";
import { type } from "@tauri-apps/plugin-os";
import { Button, HeaderSize } from "@yaakapp-internal/ui";
import classNames from "classnames";
import { StrictMode } from "react";
import { useState } from "react";
import { createRoot } from "react-dom/client";
@@ -51,7 +52,7 @@ function App() {
}
return (
<div className="h-full w-full grid grid-rows-[auto_1fr]">
<div className={classNames('h-full w-full grid grid-rows-[auto_1fr]', osType === 'linux' && 'border border-border-subtle')}>
<HeaderSize
size="lg"
osType={osType}

View File

@@ -14,6 +14,7 @@
"@tauri-apps/plugin-os": "^2.3.2",
"@yaakapp-internal/theme": "^1.0.0",
"@yaakapp-internal/ui": "^1.0.0",
"classnames": "^2.5.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},