Fix margin on <router-view>
This commit is contained in:
parent
3445693ef4
commit
4da3f3774b
|
@ -1,4 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
|
<div>
|
||||||
<button type="button" :class="yesClass" class="label success font-mono mx-1 my-3"
|
<button type="button" :class="yesClass" class="label success font-mono mx-1 my-3"
|
||||||
@click.prevent="toggleYes">YES</button>
|
@click.prevent="toggleYes">YES</button>
|
||||||
<button type="button" :class="noClass" class="label error font-mono mx-1 my-3" @click.prevent="toggleNo">NO</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>
|
<button class="col-span-2" type="submit">submit order</button>
|
||||||
</form>
|
</form>
|
||||||
<div v-if="err" class="red text-center">{{ err }}</div>
|
<div v-if="err" class="red text-center">{{ err }}</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
Loading…
Reference in New Issue