22 lines
328 B
Vue
22 lines
328 B
Vue
<script lang="ts" setup>
|
|
</script>
|
|
|
|
<template>
|
|
<div class="page-wrapper">
|
|
<slot/>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="stylus" scoped>
|
|
.page-wrapper {
|
|
height 100%
|
|
width 100%;
|
|
overflow hidden
|
|
padding 0 5px 5px 5px
|
|
contain: layout paint;
|
|
transform: translateZ(0);
|
|
box-sizing border-box
|
|
display grid
|
|
}
|
|
</style>
|