mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-25 11:20:07 +08:00
🐛 fix: improve dropdown submenu scrolling for tag move functionality
- Set max-height to min(400px, 80vh) for dropdown submenus - Ensures scrollable list when moving topics to tags with many assistants - Fixes issue where some tags cannot be displayed in move-to dropdown Fixes #10877
This commit is contained in:
parent
6f63eefa86
commit
09214a3020
@ -102,7 +102,7 @@
|
||||
}
|
||||
|
||||
.ant-dropdown-menu .ant-dropdown-menu-sub {
|
||||
max-height: 80vh;
|
||||
max-height: min(400px, 80vh);
|
||||
width: max-content;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user