大屏组件开发

This commit is contained in:
yanran200730
2023-03-08 17:03:00 +08:00
parent 54bcd5979a
commit 452952670b
4 changed files with 97 additions and 12 deletions

View File

@@ -51,5 +51,23 @@ export default {
<style lang="scss" scoped>
.preview {
::-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;
}
}
</style>