css cleanup

This commit is contained in:
2025-08-29 21:57:03 -04:00
parent f38a5a69df
commit 90be478e9a
6 changed files with 88 additions and 64 deletions

View File

@@ -44,8 +44,6 @@ const App = () => {
<>
<Suspense>{props.children}</Suspense>
<Profile />
{/* Version */}
<span class="fixed br m-2 font-mono text-xs">
{"v" + pkg.version}
</span>
@@ -54,11 +52,11 @@ const App = () => {
>
<Route path="/" component={lazy(() => import("./routes/index"))} />
<Route
path="/:tableKey"
path="/t/:tableKey"
component={lazy(() => import("./routes/[table]"))}
/>
</Router>
);
};
render(App, document.getElementById("app")!);
render(App, document.getElementsByTagName("body")[0]);