vue-swatches icon indicating copy to clipboard operation
vue-swatches copied to clipboard

border around the trigger.

Open NozzyEz opened this issue 3 years ago • 1 comments

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

NozzyEz avatar Jul 29 '21 07:07 NozzyEz

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;
}

saintplay avatar Jul 29 '21 15:07 saintplay