mirror of https://github.com/halo-dev/halo
47 lines
774 B
Vue
47 lines
774 B
Vue
<script lang="ts" setup>
|
|
import { RouterView } from "vue-router";
|
|
import { VDialogProvider } from "@halo-dev/components";
|
|
</script>
|
|
|
|
<template>
|
|
<VDialogProvider>
|
|
<RouterView />
|
|
</VDialogProvider>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
body {
|
|
overflow-y: overlay;
|
|
background: #eff4f9;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track-piece {
|
|
background-color: #f8f8f8;
|
|
-webkit-border-radius: 2em;
|
|
-moz-border-radius: 2em;
|
|
border-radius: 2em;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: #ddd;
|
|
background-clip: padding-box;
|
|
-webkit-border-radius: 2em;
|
|
-moz-border-radius: 2em;
|
|
border-radius: 2em;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
background-color: #bbb;
|
|
}
|
|
|
|
.v-popper__popper {
|
|
outline: none;
|
|
}
|
|
</style>
|