M: Fix layout shrinking when unfolding items

This commit is contained in:
Ivan 2025-08-24 11:39:35 +03:00
parent fb1bff055c
commit c634ae9700

View File

@ -59,12 +59,13 @@ export function SelectLocation({ value, dense, prefix, onClick, className, style
tabIndex={-1} tabIndex={-1}
key={`${prefix}${index}`} key={`${prefix}${index}`}
className={clsx( className={clsx(
!dense && 'h-7 sm:h-8', !dense && 'min-h-7 sm:min-h-8',
'pr-3 py-1 flex items-center gap-2', 'pr-3 py-1 flex items-center gap-2',
'cc-scroll-row', 'cc-scroll-row',
'cc-hover-bg cc-animate-color duration-fade', 'cc-hover-bg cc-animate-color duration-fade',
'cursor-pointer', 'cursor-pointer',
'leading-3 sm:leading-4', 'leading-3 sm:leading-4',
'flex-shrink-0',
activeNode === item && 'cc-selected' activeNode === item && 'cc-selected'
)} )}
style={{ paddingLeft: `${(item.rank > 5 ? 5 : item.rank) * 0.5 + 0.5}rem` }} style={{ paddingLeft: `${(item.rank > 5 ? 5 : item.rank) * 0.5 + 0.5}rem` }}