File tree Expand file tree Collapse file tree 4 files changed +33
-11
lines changed Expand file tree Collapse file tree 4 files changed +33
-11
lines changed Original file line number Diff line number Diff line change 14
14
/* width: 100%; */
15
15
display : flex;
16
16
align-items : center;
17
- padding : 6px 6px 6 px 8 px ;
17
+ padding : 6px 6px ;
18
18
cursor : default;
19
19
color : rgb (60 , 64 , 67 );
20
20
/* border-top-left-radius: 8px;
27
27
}
28
28
29
29
.TabContainer .isPinned {
30
- padding : 8 px ;
30
+ padding : 6 px ;
31
31
}
32
32
33
33
.TabContainer .Dark {
Original file line number Diff line number Diff line change 46
46
font-size : 0.8rem ;
47
47
}
48
48
49
- .PinnedUnpinnedDivider {
50
- width : 100% ;
51
- height : 0.5px ;
52
- background-color : # 999 ;
53
- margin-top : 6px ;
54
- margin-bottom : 2px ;
55
- }
56
-
57
49
.PinnedTabsContainer {
58
50
width : 100% ;
59
51
display : flex;
60
52
align-items : center;
61
53
flex-wrap : wrap;
62
54
}
55
+
56
+ .PinnedUnpinnedDivider {
57
+ width : 100% ;
58
+ height : 0.5px ;
59
+ background-color : # 999 ;
60
+ margin-top : 6px ;
61
+ margin-bottom : 6px ;
62
+ }
Original file line number Diff line number Diff line change @@ -187,6 +187,8 @@ class TabsList extends Component {
187
187
) ;
188
188
} ) }
189
189
190
+ < div className = "PinnedUnpinnedDivider" > </ div >
191
+
190
192
< div
191
193
className = { classNames ( {
192
194
NewTabButtonContainer : true ,
@@ -201,7 +203,7 @@ class TabsList extends Component {
201
203
} ) }
202
204
onClick = { ( e ) => this . openNewTabClickedHandler ( e ) }
203
205
>
204
- < MdAdd size = { '24px ' } style = { { marginRight : 5 } } />
206
+ < MdAdd size = { '22px ' } style = { { marginRight : 3 } } />
205
207
New Tab
206
208
< div style = { { flex : 1 } } > </ div >
207
209
{ platformInfo && platformInfo . os && (
Original file line number Diff line number Diff line change 9
9
body .Dark {
10
10
background-color : rgb (36 , 36 , 36 );
11
11
}
12
+
13
+ /* width */
14
+ ::-webkit-scrollbar {
15
+ width : 8px ;
16
+ }
17
+
18
+ /* Track */
19
+ ::-webkit-scrollbar-track {
20
+ background : # f1f1f1 ;
21
+ }
22
+
23
+ /* Handle */
24
+ ::-webkit-scrollbar-thumb {
25
+ background : # 888 ;
26
+ }
27
+
28
+ /* Handle on hover */
29
+ ::-webkit-scrollbar-thumb : hover {
30
+ background : # 555 ;
31
+ }
You can’t perform that action at this time.
0 commit comments