debug: red background test to check renderer loading
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@ export default function App() {
|
|||||||
const [activeModel, setActiveModel] = useState<Model>('Deepseek')
|
const [activeModel, setActiveModel] = useState<Model>('Deepseek')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col h-full bg-black">
|
<div className="flex flex-col h-full" style={{ background: '#ff0000' }}>
|
||||||
<ModelSelector active={activeModel} onSelect={setActiveModel} />
|
<ModelSelector active={activeModel} onSelect={setActiveModel} />
|
||||||
<ChatArea />
|
<ChatArea />
|
||||||
<InputArea />
|
<InputArea />
|
||||||
|
|||||||
@@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
html, body, #root {
|
html, body, #root {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #000;
|
background: #ff0000;
|
||||||
color: #e5e5e5;
|
color: #fff;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|||||||
Reference in New Issue
Block a user