geekai/new-ui/projects/admin/src/App.vue
2024-03-13 17:30:24 +08:00

22 lines
340 B
Vue

<template>
<RouterView />
</template>
<style>
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-thumb {
border-radius: 1px;
box-shadow: inset 0 0 5px #0000000d;
background: #d9d9d9;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px #0000000d;
border-radius: 1px;
background: #fafafa;
}
</style>