79210512d5
The .container class in KiloProvider.ts had align-items: center which horizontally centers flex children in a column layout. This caused all tab content to shrink to intrinsic width instead of stretching to fill the available space. The About tab was most visibly affected because its content (short labels like 'Status:', 'Port:') is intrinsically narrow, while placeholder tabs with long paragraphs masked the issue. Changes: - KiloProvider.ts: Remove align-items/justify-content from .container, add height: 100vh so Settings fills the sidebar panel - AboutKiloCodeTab.tsx: Remove redundant width: 100% from outer div, match the plain <div> pattern used by all other tabs