update techytable滚动条

This commit is contained in:
lb
2022-11-10 13:41:57 +08:00
parent 8a9df0fd17
commit affc23fbc2
4 changed files with 47 additions and 18 deletions

View File

@@ -163,7 +163,7 @@ export default {
}
#v3d-outter *::-webkit-scrollbar {
width: 8px;
width: calc(8px * var(--beilv));
}
#v3d-outter *::-webkit-scrollbar-track {
@@ -173,14 +173,14 @@ export default {
}
#v3d-outter *::-webkit-scrollbar-button {
width: 8px;
height: 8px;
width: calc(8px * var(--beilv));
height: calc(8px * var(--beilv));
background: #5bc4bf9f;
position: relative;
}
#v3d-outter *::-webkit-scrollbar-thumb {
border-radius: 8px;
border-radius: calc(8px * var(--beilv));
background: #5bc4bf9f;
}