FIX: unable to scroll AI bot persona selector (#1445)

This update fixes a UX issue on the AI bot conversations page where the persona selector dropdown doesn't scroll when there are many items and the viewport is small.

No tests as it's tricky to test scrolling.
This commit is contained in:
Keegan George
2025-06-18 12:20:50 -07:00
committed by GitHub
parent d7a2af5505
commit cea8fd423e
@@ -125,6 +125,13 @@ body.has-ai-conversations-sidebar {
gap: 0.5em;
justify-content: flex-start;
.select-kit-body {
.select-kit-collection {
max-height: 50vh;
overflow-y: auto;
}
}
&__selection-wrapper {
display: flex;
flex-direction: column;