Skip to content
Snippets Groups Projects
Commit 799a7d1d authored by jonschi's avatar jonschi
Browse files

--amend

parent d028f708
Branches
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ export default {
},
height: {
type: Number,
default: 150,
default: 203,
},
cssClasses: {
default: "",
......
<script setup>
</script>
<template>
<div class="outer">
<div class="middle">
<div class="inner">
<slot />
</div>
</div>
</div>
</template>
<style scoped>
.outer {
display: table;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.inner {
margin-left: auto;
margin-right: auto;
width: 400px;
}
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment