Skip to content

Commit

Permalink
feat: Fix Vuetify BTN CSS Class - MEED-7475 - Meeds-io/MIPs#151
Browse files Browse the repository at this point in the history
Prior to this change, when adding a v-btn with outlined attribute, the border isn't well applied to the CSS selector priority. This change ensures that the selector doesn't match the outlined buttons.
  • Loading branch information
boubaker committed Oct 2, 2024
1 parent 2195316 commit 75eb859
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3152,7 +3152,7 @@ html [type=button]:not(.ignore-vuetify-classes),
}

/* Remove the default button styling in all browsers */
button:not(.ignore-vuetify-classes),
button:not(.ignore-vuetify-classes):not(.v-btn--outlined),
input:not(.ignore-vuetify-classes),
select:not(.ignore-vuetify-classes),
textarea:not(.ignore-vuetify-classes) {
Expand Down

0 comments on commit 75eb859

Please sign in to comment.