File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -120,3 +120,24 @@ span.code-number {
120
120
width : 100% ;
121
121
height : 100% ;
122
122
}
123
+
124
+ /* Customizes the scrollbar's track */
125
+ ::-webkit-scrollbar-track {
126
+ background-color : rgba (0 , 0 , 0 , 0 );
127
+ }
128
+
129
+ /* Customizes the scrollbar's thumb */
130
+ ::-webkit-scrollbar-thumb {
131
+ background-color : rgba (255 , 255 , 255 , 0.2 );
132
+ border-radius : var (--border-radius-medium );
133
+ }
134
+
135
+ /* Customizes the scrollbar thumb on hover */
136
+ ::-webkit-scrollbar-thumb : hover {
137
+ background-color : rgba (255 , 255 , 255 , 0.5 );
138
+ }
139
+
140
+ /* Sets the scrollbar width */
141
+ ::-webkit-scrollbar {
142
+ width : 8.5px ;
143
+ }
Original file line number Diff line number Diff line change @@ -75,12 +75,14 @@ const setFocus = (value) => {
75
75
text-align : center ;
76
76
border-color : var (--border );
77
77
color : var (--secondary-text );
78
+ cursor : pointer ;
78
79
}
79
80
80
81
#url-bar :focus {
81
82
color : var (--highlight-text );
82
83
border-color : var (--dark-blue );
83
84
box-shadow : 0px 4px 6px rgba (0 , 0 , 0 , 0.1 );
85
+ cursor : text ;
84
86
}
85
87
86
88
</style >
You can’t perform that action at this time.
0 commit comments