Files
windmill/dev-dashboard/frontend/src/app.css
T
centdix c1f7cb5d42 fix: use script+pipes for terminal PTY and fix frontend sizing
Bun's terminal option data callback doesn't fire inside Bun.serve
context (Bun 1.3.9 bug). Switch to script(1) for PTY allocation with
piped stdin/stdout. Fix terminal not taking full width/height by adding
min-h-0, min-w-0 and width: 100% for proper flex layout.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 00:04:50 +00:00

42 lines
777 B
CSS

@import "tailwindcss";
@theme {
--color-surface: #0d1117;
--color-sidebar: #161b22;
--color-topbar: #1c2128;
--color-hover: #21262d;
--color-active: #1f6feb33;
--color-edge: #30363d;
--color-primary: #e6edf3;
--color-muted: #8b949e;
--color-accent: #58a6ff;
--color-danger: #f85149;
--color-success: #3fb950;
--color-warning: #d29922;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
/* dialog styling (no tailwind equivalents for ::backdrop) */
dialog::backdrop {
background: rgba(0, 0, 0, 0.6);
}
dialog textarea {
font-family: inherit;
}
dialog textarea:focus {
outline: none;
border-color: var(--color-accent);
}
/* xterm overrides */
.xterm {
height: 100%;
width: 100%;
}