You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
800 B
Vue
56 lines
800 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App",
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
color: #fff;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
body {
|
|
font-family: "PingFang SC", "Helvetica Neue", Helvetica, "microsoft yahei",
|
|
arial, STHeiTi, sans-serif;
|
|
}
|
|
/* 整个滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
/* 滚动条上的滚动滑块 */
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #ccc;
|
|
/* 关键代码 */
|
|
border-radius: 32px;
|
|
}
|
|
|
|
/* 滚动条轨道 */
|
|
::-webkit-scrollbar-track {
|
|
background-color: #f0f0f0;
|
|
border-radius: 32px;
|
|
}
|
|
</style>
|