I currently have
a special-table component that includes a box shadow when the row is expanded
https://i.stack.imgur.com/8zgjp.png
I am aiming for
the removal of the box-shadow effect. After inspecting the console-style tab, I identified
https://i.stack.imgur.com/aX5W7.png
Following this discovery, I attempted to add the following code snippet at the end of my show.vue
file:
.v-data-table > .v-data-table__wrapper tbody tr.v-data-table__expanded__content {
box-shadow: none !important;
}
However, despite my efforts, the box shadow still persists and remains visible.