File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export default styled(Link)`
9
9
10
10
background: transparent;
11
11
/* border-top: ${ remSize ( 4 ) } solid ${ props => prop ( props . selected ? 'colors.p5jsPink' : 'MobilePanel.default.background' ) } ; */
12
- border-top: ${ remSize ( 4 ) } solid ${ props => ( props . selected ? prop ( 'colors.p5jsPink ' ) : 'transparent' ) } ;
12
+ border-top: ${ remSize ( 4 ) } solid ${ props => ( props . selected ? prop ( 'TabHighlight ' ) : 'transparent' ) } ;
13
13
14
14
color: ${ prop ( 'primaryTextColor' ) } ;
15
15
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ const ContentWrapper = styled(Content)`
47
47
tbody td, thead th {
48
48
justify-self: stretch;
49
49
align-self: flex-end;
50
+ color: ${ prop ( 'primaryTextColor' ) }
50
51
}
51
52
52
53
tbody td:nth-child(2) { grid-column-start: 2 }
@@ -57,8 +58,13 @@ const ContentWrapper = styled(Content)`
57
58
height: ${ remSize ( 48 ) } ;
58
59
}
59
60
60
- .sketches-table-container { padding-bottom: ${ remSize ( 160 ) } }
61
- .sketches-table__row { background: white !important; height: auto }
61
+ .sketches-table-container {
62
+ padding-bottom: ${ remSize ( 160 ) } ;
63
+ background: ${ prop ( 'backgroundColor' ) } ;
64
+ }
65
+ .sketches-table__row {
66
+ background: ${ prop ( 'backgroundColor' ) } !important; height: auto
67
+ }
62
68
63
69
tr {
64
70
align-self: start;
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ export default {
104
104
border : grays . middleLight
105
105
} ,
106
106
Separator : grays . middleLight ,
107
+
108
+ TabHighlight : colors . p5jsPink ,
107
109
} ,
108
110
[ Theme . dark ] : {
109
111
colors,
@@ -149,6 +151,8 @@ export default {
149
151
border : grays . middleDark
150
152
} ,
151
153
Separator : grays . middleDark ,
154
+
155
+ TabHighlight : colors . p5jsPink ,
152
156
} ,
153
157
[ Theme . contrast ] : {
154
158
colors,
@@ -194,5 +198,7 @@ export default {
194
198
border : grays . middleDark
195
199
} ,
196
200
Separator : grays . middleDark ,
201
+
202
+ TabHighlight : colors . yellow ,
197
203
} ,
198
204
} ;
You can’t perform that action at this time.
0 commit comments