main.css changed scrollbar width

This commit is contained in:
Harrison Deng 2016-10-28 14:13:47 +00:00
parent 08d6aded83
commit 3fa768c6fd

View File

@ -234,19 +234,19 @@ p {
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 10px; width: 6px;
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 4px rgba(0, 255, 255, 1); -webkit-box-shadow: inset 0 0 2px rgba(0, 255, 255, 1);
background-color: rgba(0,0,0,0.9); background-color: rgba(0,0,0,0.9);
border-radius: 10px; border-radius: 2px;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: rgba(0, 255, 255, 0.5); background-color: rgba(0, 255, 255, 0.5);
border-radius: 6px; border-radius: 2px;
-webkit-box-shadow: inset 0 0 4px rgba(0, 255, 255, 0.5); -webkit-box-shadow: inset 0 0 2px rgba(0, 255, 255, 0.5);
} }
.auto-size { .auto-size {