Files
DiceCloud/app/imports/client/ui/layouts/SingleCardLayout.vue
2022-11-19 17:51:50 +02:00

20 lines
343 B
Vue

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