is there an easy way to disable resizing for a sin...
# kvision
r
is there an easy way to disable resizing for a single TextArea? I've tried setting custom css to no avail:
Copy code
val css = Style {
    resize = Resize.NONE
    overflow = Overflow.AUTO
}
val loggingTextField = TextArea(rows = 20, value = "", label = "Release Log").apply {
    disabled = true
    addCssStyle(css)
}