2020-12-30 00:00:39 +08:00
|
|
|
.win {
|
|
|
|
/* width */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: #555;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-page-header-footer {
|
|
|
|
margin-top: 5px;
|
2020-12-30 11:22:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-group {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
width: 100%;
|
2020-12-30 00:00:39 +08:00
|
|
|
}
|