mirror of
https://gitee.com/coder-xiaomo/algorithm-visualization
synced 2025-09-09 22:21:39 +08:00
完成选择排序算法;样式小调整
This commit is contained in:
@@ -26,11 +26,27 @@ body,
|
||||
|
||||
#console-logs {
|
||||
margin: 0 auto;
|
||||
margin-top: 8px;
|
||||
padding: 0 15px;
|
||||
height: 100px;
|
||||
width: 300px;
|
||||
background-color: #cccccc;
|
||||
overflow-y: overlay;
|
||||
border-radius: 12px;
|
||||
user-select: none;
|
||||
border-radius: 10px;
|
||||
/* user-select: none; */
|
||||
}
|
||||
|
||||
/* 滚动条样式 refer: https://www.changchenghao.cn/n/679637.html */
|
||||
#console-logs::-webkit-scrollbar {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
#console-logs::-webkit-scrollbar:vertical {
|
||||
width: 11px;
|
||||
}
|
||||
|
||||
#console-logs::-webkit-scrollbar-thumb {
|
||||
border-radius: 8px;
|
||||
border: 2px solid white;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
Reference in New Issue
Block a user