Reputation: 58632
I'm trying to style 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>
Doesn't seem to take effect ! Am I doing anything wrong ?
Upvotes: 0
Views: 48
Reputation: 1
Try to use the white-space: nowrap;
rule :
<style scoped>
>>> .description {
white-space: nowrap;
color: red; //TEST
}
</style>
Upvotes: 1