vue-swatches
vue-swatches copied to clipboard
border around the trigger.
I know we can add show-border
to the v-swatches
component, and that adds a border around the swatch colors, but is there a way to also give a border to the actual trigger? i've tried to hack it with css, but that seems to do nothing
Maybe that should work out of the box, or with other prop.
For now, using css should do the trick.
.vue-swatches__trigger {
border: 1px solid #ccc;
}