大屏组件

This commit is contained in:
yanran200730
2023-03-14 14:51:40 +08:00
parent 34e50b6406
commit 8e09ea8efc
3 changed files with 43 additions and 2 deletions

View File

@@ -73,6 +73,28 @@
<style lang="scss" scoped>
.AiRanking {
height: 100%;
overflow-y: auto;
&::-webkit-scrollbar {
width: 5px;
height: 14px;
}
&::-webkit-scrollbar-corner {
background: transparent;
}
&::-webkit-scrollbar-thumb {
min-height: 20px;
background-clip: content-box;
box-shadow: 0 0 0 5px rgba(116, 148, 170, 0.5) inset;
}
&::-webkit-scrollbar-track {
box-shadow: 1px 1px 5px rgba(116, 148, 170, 0.5) inset;
}
* {
box-sizing: border-box;
}
@@ -212,6 +234,25 @@
}
}
}
&::-webkit-scrollbar {
width: 5px;
height: 14px;
}
&::-webkit-scrollbar-corner {
background: transparent;
}
&::-webkit-scrollbar-thumb {
min-height: 20px;
background-clip: content-box;
box-shadow: 0 0 0 5px rgba(250, 181, 108, 0.5) inset;
}
&::-webkit-scrollbar-track {
box-shadow: 1px 1px 5px rgba(50, 181, 108, 0.5) inset;
}
}
}
</style>