I've encountered a challenge in my Vue.js project where I'm utilizing Vuetify and vue-flash-message. My goal is to change the warning message background to 'blueviolet' by adjusting its style:
.flash__message.warning {
color: #ffffff;
background-color: blueviolet;
border-color: #ef9e3b;
}
However, the '.warning' class in Vuetify seems to be overriding my changes, as shown in the screenshot https://i.sstatic.net/eEgWk.png.
I'm curious if anyone can shed light on the technique being used here. Additionally, I would appreciate guidance on the correct approach to achieve the desired 'blueviolet' message background in this scenario.