-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
55 lines (48 loc) · 1012 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<template>
<Header></Header>
<NuxtPage />
<Footer></Footer>
</template>
<style>
@import "./reset.css";
* {
font-size: 14px;
}
/* 整个滚动条 */
::-webkit-scrollbar {
width: 8px;
/* 水平滚动条的高度、垂直滚动条的宽度 */
background-color: #f9f9f9;
/* 滚动条的背景色 */
}
/* 滚动条内的滑块 */
::-webkit-scrollbar-thumb {
background-color: #bdbdbd;
/* 滑块的背景色 */
border-radius: 6px;
/* 滑块的圆角 */
}
/* 滚动条内的滑块:鼠标悬停时 */
::-webkit-scrollbar-thumb:hover {
background-color: #a1a1a1;
/* 滑块的背景色 */
}
/* 滚动条内的滑块:被按下时 */
::-webkit-scrollbar-thumb:active {
background-color: #919191;
/* 滑块的背景色 */
}
/* 滚动条外的轨道 */
::-webkit-scrollbar-track {
background-color: #f0f0f0;
/* 轨道的背景色 */
}
.ellipsis {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
</style>
<script setup lang="ts">
</script>