Skip to content

Commit b3eb352

Browse files
committed
added scroll and custom scrollbar
1 parent 861f017 commit b3eb352

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

mlflow-site/src/app/globals.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,26 @@ body {
4646
overflow-y: auto;
4747
}
4848

49+
::-webkit-scrollbar {
50+
height: 10px;
51+
width: 10px;
52+
}
53+
54+
/* Track */
55+
::-webkit-scrollbar-track {
56+
background: #262626;
57+
}
58+
59+
/* Handle */
60+
::-webkit-scrollbar-thumb {
61+
background: #3c3c3c;
62+
}
63+
64+
/* Handle on hover */
65+
::-webkit-scrollbar-thumb:hover {
66+
background: #1b1b1b;
67+
}
68+
4969
.mobileWrapper {
5070
background: rgb(255, 255, 255);
5171
width: 100%;

0 commit comments

Comments
 (0)