Files
DiceCloud/app/imports/ui/layouts/SingleCardLayout.vue
2021-03-26 10:00:37 +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>