border-radius please help
Opened this issue · 1 comments
kosirm commented
fraudoudou commented
You can check out the examples for an example like that: https://choices-js.github.io/Choices/ –– in short what you need to do:
/* default border-radius */
.choices__inner {
border-radius: ...
}
/* reset bottom border-radius if open */
.choices.is-open .choices__inner {
border-bottom-right-radius: unset;
border-bottom-left-radius: unset;
}
Hope that helps!