Backup before continuing from Codex 5.2 session - User storage, compaction suggestions, streaming improvements

This commit is contained in:
Gemini AI
2025-12-24 21:27:05 +04:00
Unverified
parent f9748391a9
commit e8c38b0add
93 changed files with 10615 additions and 2037 deletions

View File

@@ -6,6 +6,7 @@
@import './styles/markdown.css';
@import './styles/tabs.css';
@import './styles/antigravity.css';
@import './styles/responsive.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
@@ -18,6 +19,7 @@
html,
body {
font-family: var(--font-family-sans);
font-size: var(--font-size-base);
@@ -27,12 +29,18 @@ body {
-moz-osx-font-smoothing: grayscale;
background-color: var(--surface-base);
color: var(--text-primary);
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
#root {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
background-color: var(--surface-base);
overflow: hidden;
}
@@ -61,6 +69,5 @@ body {