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.
29 lines
528 B
29 lines
528 B
2 years ago
|
<template>
|
||
|
<div id="app">
|
||
|
<router-link to="/"></router-link>
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
</script>
|
||
|
<style lang="less">
|
||
|
::-webkit-scrollbar {
|
||
|
-webkit-appearance: none;
|
||
|
width: 6px;
|
||
|
height: 6px;
|
||
|
}
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: rgba(0, 0, 0, 0.1);
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
cursor: pointer;
|
||
|
border-radius: 5px;
|
||
|
background: rgba(0, 0, 0, 0.15);
|
||
|
transition: color 0.2s ease;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb:hover {
|
||
|
background: rgba(0, 0, 0, 0.3);
|
||
|
}
|
||
|
</style>
|