I am attempting to create some space between the buttons (Reset Filter/Apply Filter/Save & Apply Filter) in my UI. I have used flexbox to align the buttons, but I am struggling to add margins or gaps between them. Any suggestions on how to achieve this?
Here is the code snippet:
<div class="d-flex flex-column justify-space-around">
<v-btn
text
style="margin-left: 30px"
color="primary"
@click="resetFilter()">
Reset Filter
</v-btn>
<v-btn
v-if="!updatingSavedFilter"
color="primary"
@click="
applyFilter()
filterDropdownOpen = false">
Apply Filter
</v-btn>
<v-btn
color="primary"
@click="
validateAndSaveFilter()
filterDropdownOpen = "false">
Save & Apply Filter
</v-btn>
</div>