mirror of
https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology.git
synced 2026-05-15 14:20:35 +08:00
Root cause: compact layout used width:fit-content on parent with overflow:hidden + min-width:0 on __content flex child. In flex, min-width:0 allows the child to shrink to 0, and fit-content + overflow:hidden causes the content to collapse completely, showing only 'ST...' for the title. Fix: Replace width:fit-content with max-width on the compact parent so the container can size naturally. Give __content flex:1 1 0% so it takes all available space after icon/close button, letting the title fill that space and ellipsis only when it genuinely overflows.