File tree Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const ContentWrapper = styled(Content)`
51
51
}
52
52
53
53
tbody td:nth-child(2) { grid-column-start: 2 }
54
- tbody td:last-child { justify-self: end }
54
+ tbody td:last-child { justify-self: end; text-align: end; }
55
55
56
56
/* .sketch-list__sort-button { padding: 0 } */
57
57
tbody {
@@ -60,10 +60,10 @@ const ContentWrapper = styled(Content)`
60
60
61
61
.sketches-table-container {
62
62
padding-bottom: ${ remSize ( 160 ) } ;
63
- background: ${ prop ( 'backgroundColor ' ) } ;
63
+ background: ${ prop ( 'SketchList.background ' ) } ;
64
64
}
65
65
.sketches-table__row {
66
- background: ${ prop ( 'backgroundColor ' ) } !important; height: auto
66
+ background: ${ prop ( 'SketchList.card.background ' ) } !important; height: auto
67
67
}
68
68
69
69
tr {
Original file line number Diff line number Diff line change @@ -106,6 +106,12 @@ export default {
106
106
Separator : grays . middleLight ,
107
107
108
108
TabHighlight : colors . p5jsPink ,
109
+ SketchList : {
110
+ background : grays . lighter ,
111
+ card : {
112
+ background : grays . lighter
113
+ }
114
+ }
109
115
} ,
110
116
[ Theme . dark ] : {
111
117
colors,
@@ -153,6 +159,12 @@ export default {
153
159
Separator : grays . middleDark ,
154
160
155
161
TabHighlight : colors . p5jsPink ,
162
+ SketchList : {
163
+ background : grays . darker ,
164
+ card : {
165
+ background : grays . dark
166
+ }
167
+ }
156
168
} ,
157
169
[ Theme . contrast ] : {
158
170
colors,
@@ -199,6 +211,12 @@ export default {
199
211
} ,
200
212
Separator : grays . middleDark ,
201
213
202
- TabHighlight : colors . yellow ,
214
+ TabHighlight : grays . darker ,
215
+ SketchList : {
216
+ background : colors . yellow ,
217
+ card : {
218
+ background : grays . dark
219
+ }
220
+ }
203
221
} ,
204
222
} ;
You can’t perform that action at this time.
0 commit comments