diff --git a/app/components/nav-header.tsx b/app/components/nav-header.tsx index d93d6ba..b98a0c4 100644 --- a/app/components/nav-header.tsx +++ b/app/components/nav-header.tsx @@ -16,7 +16,7 @@ export function NavHeader() { return (
-
+
@@ -29,8 +29,8 @@ export function NavHeader() { className={clsx( "flex text-sm font-mono border rounded-lg divide-x dark:(border-neutral-700 divide-neutral-700) overflow-hidden", { - "!border-blue-500/70": isLogs && appId, - "!border-rose-500/70": isRequests && appId, + "!border-blue-500": isLogs && appId, + "!border-rose-500": isRequests && appId, }, )} > diff --git a/app/routes/app.tsx b/app/routes/app.tsx index ecd300a..ad3d9fa 100644 --- a/app/routes/app.tsx +++ b/app/routes/app.tsx @@ -32,12 +32,12 @@ export const action = async ({ request }: ActionFunctionArgs) => { export default function AppLayout() { return ( -
-
+
+
-
+
diff --git a/uno.config.ts b/uno.config.ts index 14ad68f..d44082c 100644 --- a/uno.config.ts +++ b/uno.config.ts @@ -8,9 +8,9 @@ import { } from "unocss"; export default defineConfig({ - content: { - filesystem: ["**/*.{html,js,ts,jsx,tsx,vue,svelte,astro}"], - }, - presets: [presetWind3({ dark: "media" }), presetIcons(), presetForms()], - transformers: [transformerDirectives(), transformerVariantGroup()], + content: { + filesystem: ["app/**/*.{html,js,ts,tsx}"], + }, + presets: [presetWind3({ dark: "media" }), presetIcons(), presetForms()], + transformers: [transformerDirectives(), transformerVariantGroup()], });