Hi there! [SOLVED]
I'm trying to recreate a page using Vue.js and Vuetify, but I don't know how can I get the following result with my buttons:
This is my goal: https://i.stack.imgur.com/umN4U.png
This is what I have now: https://i.stack.imgur.com/rFwED.png
As you can see, I just need to remove the RED part inside the buttons, to make them stay smaller and together, as the following: https://i.stack.imgur.com/Lr44Z.png
How can I remove this 'inside padding' from a v-btn?
This is my code:
<v-card>
<v-flex xs12>
<v-img src="https://cdn.vuetifyjs.com/images/parallax/material2.jpg"/>
</v-flex>
<v-card-text>
{{ card.content }}
</v-card-text>
<v-card-actions>
<v-btn small outline color="secondary" class="ma-0 text-capitalize">View</v-btn>
<v-btn small outline color="secondary" class="ma-0 text-capitalize">Edit</v-btn>
</v-card-actions>
</v-card>
Thanks yall!!