Hi there
How can I use the CSS vars for VueForm/Multiselect,
there are 3 ways of styling but I don't know which one to use and how to use it
here are the styling docs for the component
https://github.com/vueform/multiselect#styling
Hi,
To override the CSS variable, you need to update @vueform/multiselect to the latest version, which is 2.6.6.
Afterward, you can override these variables globally with the following code:
:root {
--ms-option-bg-selected: var(--bs-success);
...
}
@import "@vueform/multiselect/themes/default.scss";