From 01df7f787147e7d4857ca7dde21f969d3138ddc6 Mon Sep 17 00:00:00 2001 From: you Date: Fri, 20 Mar 2026 07:57:43 +0000 Subject: [PATCH] fix: observer column min-width 70px to prevent zero-width squeeze --- public/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/public/style.css b/public/style.css index 7a30545f..0e97c32b 100644 --- a/public/style.css +++ b/public/style.css @@ -690,6 +690,7 @@ button.ch-item.selected { background: var(--selected-bg); } .health-dot.health-red { background: #ef4444; box-shadow: 0 0 6px #ef444480; } .obs-table td:first-child { white-space: nowrap; } .obs-table td:nth-child(6) { max-width: none; overflow: visible; } +.col-observer { min-width: 70px; } .spark-bar { position: relative; min-width: 60px; max-width: 100px; flex: 1; height: 18px; background: var(--border); border-radius: 4px; overflow: hidden; display: inline-block; vertical-align: middle; } @media (max-width: 640px) { .spark-bar { max-width: 60px; } } .spark-fill { height: 100%; background: linear-gradient(90deg, #3b82f6, #60a5fa); border-radius: 4px; transition: width 0.3s; }