Making sharp / square corners in Vuetify buttons (v-btn)
Another one of those things that I'm saving for future reference.
The main page on Vuetify buttons pretty clearly shows that their buttons have a slight rounding by default. But, there aren't any instructions on how to sharpen the corners. And internet searches seem to be full of people who want to know how to make their buttons even more rounded, even though that's already explained on the page.
So here are the steps!
1) Apply a CSS class to your v-btn
2) Add the following attribute to the CSS class:
border-radius: 0 !important;
You don't need any other border-based attributes. With that, it should work.
Comments
Post a Comment