ignore: cloud

This commit is contained in:
Jay V
2025-08-28 17:34:55 -04:00
parent 7d1eb010c1
commit 9b27d61fe8
4 changed files with 16 additions and 4 deletions

View File

@@ -1,10 +1,11 @@
import "./workspace/workspace.css"
import { RouteSectionProps } from "@solidjs/router";
export default function WorkspaceLayout(props: RouteSectionProps) {
return (
<div>
<main data-page="workspace">
<h1>Workspace</h1>
{props.children}
</div>
</main>
);
}

View File

@@ -0,0 +1,10 @@
[data-page="workspace"] {
font-family: var(--font-mono);
@media (prefers-color-scheme: dark) {
}
}
[data-page="workspace"] {
font-family: var(--font-mono);
}

View File

@@ -1,6 +1,7 @@
html {
line-height: 1;
background-color: var(--color-bg);
color: var(--color-text);
}
body {

View File

@@ -47,7 +47,7 @@
@media (prefers-color-scheme: dark) {
:root {
/* OpenCode dark theme colors */
/*--color-bg: #0c0c0e;*/
--color-bg: #0c0c0e;
--color-bg-surface: #161618;
--color-bg-elevated: #1c1c1f;