You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
805 B
43 lines
805 B
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
|
|
<PublicComponent />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import PublicComponent from '@/components/PublicComponent/PublicComponent.vue'
|
|
</script>
|
|
<style>
|
|
body,
|
|
html,
|
|
#app {
|
|
width: 1080px;
|
|
height: 1920px;
|
|
background-color: #dee6f6;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.zoom-enter-active {
|
|
transition: all 0.3s;
|
|
transition-timing-function: cubic-bezier(0.75, 0, 0.24, 1);
|
|
}
|
|
|
|
.zoom-leave-active {
|
|
position: absolute !important;
|
|
transition: all 0.2s;
|
|
transition-timing-function: cubic-bezier(0.75, 0, 0.24, 1);
|
|
}
|
|
|
|
.zoom-enter-from,
|
|
.zoom-leave-to {
|
|
transform: scale(0.87);
|
|
transform-origin: center center;
|
|
opacity: 0;
|
|
}
|
|
.zoom-move {
|
|
transition: transform 0.5s !important;
|
|
transition-timing-function: cubic-bezier(0.75, 0, 0.24, 1);
|
|
}
|
|
</style>
|
|
|