22 lines
385 B
Vue
22 lines
385 B
Vue
![]() |
<script setup>
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<dv-full-screen-container class="body">
|
||
|
<router-view></router-view>
|
||
|
</dv-full-screen-container>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
.body {
|
||
|
background-image: url("/src/assets/img/bg.png");
|
||
|
background-size: 100% 100%;
|
||
|
color: #fff;
|
||
|
background-color: rgba($color: #000000, $alpha: 0.8);
|
||
|
}
|
||
|
</style>
|