html,
body,
.main {
height: 100%;
margin: 0;
padding: 0;
}
.main {
display: grid;
place-items: center;
}
#container {
border: 1px solid #999;
border-radius: 5px;
box-shadow: 0 0 5px #999;
}
#sidebar {
display: grid;
place-items: center;
}
#console-logs {
margin: 0 auto;
margin-top: 8px;
padding: 0 15px;
height: 100px;
width: 300px;
background-color: #cccccc;
overflow-y: overlay;
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);
}