When using Vuetify's v-app-bar
, there are default css classes named v-toolbar__content
and v-toolbar__extension
that apply padding of 16px
on the x-axis and 4px
on the y-axis, which I aim to eliminate.
I attempted to override these classes in my CSS like so:
.v-toolbar__content {
padding: 0px !important;
}
However, this approach did not yield the desired results. Is there a clever workaround available to remove the padding from v-app-bar
?