All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 16s
18 lines
429 B
Vue
18 lines
429 B
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<div class="flex-row flex">
|
|
<div class="w-2/7 mt-auto mb-auto ml-0">
|
|
<slot name="left" />
|
|
</div>
|
|
<div class="w-full p-2">
|
|
<div
|
|
class="flex-row flex place-content-between m-auto place-items-center"
|
|
>
|
|
<slot name="top" />
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|