I'm having trouble with styling my description column
<template v-slot:item.description="{ item }" class="description" style="overflow-wrap: normal">
{{ item.description }}
</template>
CSS
<style scoped>
>>> .description {
overflow-wrap: normal;
color: red; //TEST
}
</style>
https://i.sstatic.net/82mLA.png
Why doesn't the styling take effect? Is there something I'm missing?