Fix margin on <router-view>

This commit is contained in:
ekzyis 2023-11-28 01:35:24 +01:00
parent 3445693ef4
commit 4da3f3774b
1 changed files with 19 additions and 17 deletions

View File

@ -1,4 +1,5 @@
<template>
<div>
<button type="button" :class="yesClass" class="label success font-mono mx-1 my-3"
@click.prevent="toggleYes">YES</button>
<button type="button" :class="noClass" class="label error font-mono mx-1 my-3" @click.prevent="toggleNo">NO</button>
@ -16,6 +17,7 @@
<button class="col-span-2" type="submit">submit order</button>
</form>
<div v-if="err" class="red text-center">{{ err }}</div>
</div>
</template>
<script setup>