fix: Lower sidebar min width from 140 to 120 for smaller terminals

This commit is contained in:
0xallam
2026-02-22 09:28:52 -08:00
parent 522c010f6f
commit 00c571b2ca

View File

@@ -687,7 +687,7 @@ class StrixTUIApp(App): # type: ignore[misc]
CSS_PATH = "assets/tui_styles.tcss" CSS_PATH = "assets/tui_styles.tcss"
ALLOW_SELECT = True ALLOW_SELECT = True
SIDEBAR_MIN_WIDTH = 140 SIDEBAR_MIN_WIDTH = 120
selected_agent_id: reactive[str | None] = reactive(default=None) selected_agent_id: reactive[str | None] = reactive(default=None)
show_splash: reactive[bool] = reactive(default=True) show_splash: reactive[bool] = reactive(default=True)