fix: final layout and theme fixes for absolute full screen without black frames

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-02-28 12:01:44 -03:00
parent aef91abc1c
commit 7279104bbc
3 changed files with 10 additions and 10 deletions

View file

@ -108,7 +108,7 @@
display: none; display: none;
grid-row: 1 / -1; grid-row: 1 / -1;
grid-column: 1; grid-column: 1;
background: #f8f8f8; background: var(--surface);
border-right: 1px solid var(--border); border-right: 1px solid var(--border);
flex-direction: column; flex-direction: column;
z-index: 50; z-index: 50;
@ -252,7 +252,7 @@
align-items: center; align-items: center;
gap: 8px; gap: 8px;
padding: 8px 12px; padding: 8px 12px;
background: #f8f8f8; background: var(--surface);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
font-family: 'Fira Code', monospace; font-family: 'Fira Code', monospace;
font-size: 12px; font-size: 12px;
@ -287,7 +287,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
height: 100%; height: 100%;
color: #ccc; color: var(--text-muted);
font-family: 'Fira Code', monospace; font-family: 'Fira Code', monospace;
font-size: 13px; font-size: 13px;
} }
@ -358,7 +358,7 @@
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
border-left: 1px solid var(--border); border-left: 1px solid var(--border);
padding: 12px 16px; padding: 12px 16px;
background: #f8f8f8; background: var(--surface);
flex-direction: column; flex-direction: column;
gap: 8px; gap: 8px;
} }
@ -474,7 +474,7 @@
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
padding: 8px 16px; padding: 8px 16px;
background: #f8f8f8; background: var(--surface);
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
} }

View file

@ -29,7 +29,7 @@
background: var(--bg, #ffffff); background: var(--bg, #ffffff);
color: var(--text, #333333); color: var(--text, #333333);
overflow: hidden; overflow: hidden;
height: 100vh; height: 100%;
width: 100vw; width: 100vw;
margin: 0; margin: 0;
padding: 0; padding: 0;
@ -50,7 +50,7 @@
/* Left Sidebar */ /* Left Sidebar */
.sidebar { .sidebar {
width: 51px; width: 51px;
height: 100vh; height: 100%;
background: var(--bg-secondary, #f8f8f8); background: var(--bg-secondary, #f8f8f8);
border-right: 1px solid var(--border-color, #f0f1f2); border-right: 1px solid var(--border-color, #f0f1f2);
display: flex; display: flex;
@ -242,8 +242,8 @@
/* Bottom Taskbar */ /* Bottom Taskbar */
.toolbar { .toolbar {
height: 50px; height: 50px;
background: var(--bg-secondary, white); background: var(--surface);
border-top: 1px solid var(--border-color, #f0f1f2); border-top: 1px solid var(--border);
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0 8px; padding: 0 8px;

View file

@ -31,7 +31,7 @@
/* Left Sidebar */ /* Left Sidebar */
.sidebar { .sidebar {
width: 51px; width: 51px;
height: 100vh; height: 100%;
background: var(--surface); background: var(--surface);
border-right: 1px solid var(--border); border-right: 1px solid var(--border);
display: flex; display: flex;