Files
DiceCloud/app/imports/ui/layouts/SingleCardLayout.vue
2020-05-28 15:27:55 +02:00

16 lines
277 B
Vue

<template
lang="html"
functional
>
<div
class="pa-4 layout column align-center"
style="height: calc(100vh - 96px); display: flex;"
>
<v-card
style="height: 100%; width: 100%; max-width: 1800px;"
>
<slot />
</v-card>
</div>
</template>