e.g. this gives me a very nice and small select co...
# kvision
r
e.g. this gives me a very nice and small select control:
Copy code
val formControlXs = Style {
    setStyle("height", "calc(1.3em + .4rem + 2px)")
    setStyle("padding", "0.2rem 0.4rem")
    fontSize = 0.7.rem
    lineHeight = 0.6.rem
}
// ...
simpleSelectInput(listOf("a" to "First option", "b" to "Second option")) {
    width = 110.px
    addCssStyle(formControlXs)
}