• v1.12.8 cf1c10495b

    fix: MonitorBar squeezed by terminal container height: 100%
    All checks were successful
    Build & Sign Wraith / Build Windows + Sign (push) Successful in 3m58s

    Ghost released this 2026-03-30 17:07:43 +00:00 | 4 commits to main since this release

    .terminal-container had both height: 100% (CSS) and flex-1 (Tailwind).
    In the flex-col parent, height: 100% forced the terminal to claim the
    full parent height, squeezing MonitorBar below its h-6 minimum.

    Fix: replaced height: 100% with min-height: 0. flex-1 handles sizing,
    min-height: 0 allows proper flex shrinking so MonitorBar gets its full
    24px allocation.

    Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com

    Downloads