fix(tui): splash: trigger smaller logo on 55 columns

Co-authored-by: Andrey Nering <andreynering@users.noreply.github.com>
This commit is contained in:
Ayman Bagabas
2025-07-21 10:04:41 -04:00
committed by GitHub
parent 72ed2e8302
commit a5b76d3a3f

View File

@@ -457,7 +457,7 @@ func (s *splashCmp) Cursor() *tea.Cursor {
func (s *splashCmp) isSmallScreen() bool {
// Consider a screen small if either the width is less than 40 or if the
// height is less than 20
return s.width < 40 || s.height < 20
return s.width < 55 || s.height < 20
}
func (s *splashCmp) infoSection() string {