fix: padding in simple macro panel

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej 2021-11-07 12:01:17 +01:00
parent 16a09e006f
commit 890d32c2cf

View File

@ -6,9 +6,9 @@
:collapsible="true"
card-class="macros-panel"
>
<v-container>
<v-row no-gutters v-if="macros.length">
<v-col class="text-center mr-fix-2 mb-fix-2">
<v-card-text class="py-2">
<v-row>
<v-col class="text-center">
<macro-button v-for="(macro, index) in macros"
:key="'macro_'+index"
:macro="macro"
@ -17,7 +17,7 @@
/>
</v-col>
</v-row>
</v-container>
</v-card-text>
</panel>
</template>