修复oracle数据库字段大小混写导致表数据结果页面报错问题

db模块全局滚动条美化
This commit is contained in:
diant
2023-05-12 15:08:48 +08:00
parent 41b1426132
commit 114d224cbf
12 changed files with 122 additions and 113 deletions

View File

@@ -348,4 +348,21 @@
background: #ccc;
color: #888;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 10px;
height: 10px;
}
::-webkit-scrollbar-thumb {
cursor: pointer;
border-radius: 5px;
background: rgba(0, 0, 0, 0.15);
transition: color 0.2s ease;
}
</style>