Increase sticky panel top offset for breathing room

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Paul Bakaus
2026-01-16 10:56:20 -08:00
co-authored by Claude Opus 4.5
parent d7c8a5c67c
commit 517fcfe47e
2 changed files with 4 additions and 6 deletions
+2 -3
View File
@@ -163,9 +163,8 @@
}
.glass-terminal-wrapper {
position: sticky;
top: var(--spacing-lg);
bottom: var(--spacing-lg);
height: calc(100vh - var(--spacing-lg) * 2);
top: var(--spacing-xl);
height: calc(100vh - var(--spacing-xl) * 2);
max-height: 800px;
min-height: 500px;
}
+2 -3
View File
@@ -112,9 +112,8 @@
/* Right: The Terminal Stack (Sticky) */
.glass-terminal-wrapper {
position: sticky;
top: var(--spacing-lg);
bottom: var(--spacing-lg);
height: calc(100vh - var(--spacing-lg) * 2);
top: var(--spacing-xl);
height: calc(100vh - var(--spacing-xl) * 2);
max-height: 800px;
min-height: 500px;
}