mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-19 09:46:39 +08:00
22 lines
340 B
Vue
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>
|