Fix max size of select suggestions.
This commit is contained in:
parent
7386c55952
commit
9edbc97d61
3 changed files with 12 additions and 1 deletions
|
@ -153,6 +153,14 @@ export function DemoApp()
|
|||
"d": "DDDDDD",
|
||||
"e": "EEEEEE",
|
||||
"f": "FFFFFF",
|
||||
"g": "GGGGGG",
|
||||
"h": "HHHHHH",
|
||||
"i": "IIIIII",
|
||||
"j": "JJJJJJ",
|
||||
"k": "KKKKKK",
|
||||
"l": "LLLLLL",
|
||||
"m": "MMMMMM",
|
||||
"n": "NNNNNN",
|
||||
}} value={selected} onChange={setSelected} selectibleMaxCount={3} placeholder={"Simple test"}>
|
||||
Simple select test
|
||||
</Select>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.3.2",
|
||||
"version": "1.3.3",
|
||||
"name": "@kernelui/core",
|
||||
"description": "Kernel UI Core.",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
.floating.suggestions
|
||||
{
|
||||
height: ~"min(90vh, 18em)";
|
||||
padding: 0.5em 0;
|
||||
|
||||
overflow-y: auto;
|
||||
|
||||
.suggestion
|
||||
{
|
||||
transition: background 0.2s ease;
|
||||
|
|
Loading…
Reference in a new issue