vue-tags-input icon indicating copy to clipboard operation
vue-tags-input copied to clipboard

Customize CSS

Open quinhone opened this issue 5 years ago • 1 comments

How do I customize the tags with my colors? I overwrote css in my component, but it didn't work

quinhone avatar Oct 20 '19 16:10 quinhone

Add !important and remove scoped if you are using it.

Example:

.vue-tags-input {
  background-color: tomato !important;
}

LukaHarambasic avatar Jan 05 '20 17:01 LukaHarambasic