add VirtualMultiSelect component for filters

This commit is contained in:
jeffvli
2026-01-17 16:25:12 -08:00
parent d793e67b56
commit 8c5188dfd0
4 changed files with 453 additions and 0 deletions
@@ -0,0 +1,25 @@
.container {
display: flex;
flex-direction: column;
min-height: 0;
}
.list-container {
position: relative;
flex-shrink: 0;
overflow: hidden;
background-color: var(--theme-colors-surface);
}
.search-input {
border-bottom: 1px solid var(--theme-colors-border);
}
.selected-option {
cursor: pointer;
transition: background-color 0.15s ease;
}
.selected-option:hover {
background-color: alpha(var(--theme-colors-surface), 0.6);
}