added cors support and started chat client
This commit is contained in:
26
packages/chat-client/src/index.css
Normal file
26
packages/chat-client/src/index.css
Normal file
@@ -0,0 +1,26 @@
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
:root {
|
||||
--bg-base: #0f1117;
|
||||
--bg-surface: #1a1d27;
|
||||
--bg-elevated: #222536;
|
||||
--border: #2e3150;
|
||||
--accent: #6c63ff;
|
||||
--accent-hover: #574fd6;
|
||||
--text-primary: #e8e8f0;
|
||||
--text-secondary: #8b8fa8;
|
||||
--text-muted: #555870;
|
||||
--bubble-user: #6c63ff;
|
||||
--bubble-ai: #222536;
|
||||
--sidebar-width: 280px;
|
||||
--panel-width: 260px;
|
||||
--header-height: 56px;
|
||||
}
|
||||
|
||||
html, body, #root {
|
||||
height: 100%;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||
background: var(--bg-base);
|
||||
color: var(--text-primary);
|
||||
font-size: 15px;
|
||||
}
|
||||
Reference in New Issue
Block a user