@@ -92,6 +92,11 @@ export const TABLE_STYLES: TableStylesType<
92
92
...commonPropsHeader . container ,
93
93
background_color : COLORS . SECONDARY . color_secondary_bg_150 ,
94
94
} ,
95
+ column : {
96
+ ...commonPropsHeader . column ,
97
+ //It is used to add color to one single header cell, intead of the whole row
98
+ background_color : COLORS . SECONDARY . color_secondary_bg_150 ,
99
+ } ,
95
100
} ,
96
101
[ TableHeaderVariantType . SECONDARY ] : {
97
102
...commonPropsHeader ,
@@ -102,6 +107,11 @@ export const TABLE_STYLES: TableStylesType<
102
107
border_bottom_color : COLORS . SECONDARY . color_secondary_border_50 ,
103
108
border_bottom_style : 'solid' ,
104
109
} ,
110
+ column : {
111
+ ...commonPropsHeader . column ,
112
+ //It is used to add color to one single header cell, intead of the whole row
113
+ background_color : COLORS . NEUTRAL . color_neutral_bg_250 ,
114
+ } ,
105
115
} ,
106
116
[ TableHeaderVariantType . CUSTOMIZABLE_HEADER ] : {
107
117
...commonPropsHeader ,
@@ -171,31 +181,41 @@ export const TABLE_STYLES: TableStylesType<
171
181
flex_direction : 'column' ,
172
182
justify_content : 'left' ,
173
183
background_color : COLORS . NEUTRAL . color_neutral_bg_250 ,
184
+ gap : SPACINGS . spacing_250 ,
185
+ } ,
186
+ listContainerHeaderPriority : {
187
+ display : 'flex' ,
188
+ flex_direction : 'column' ,
189
+ justify_content : 'left' ,
190
+ gap : SPACINGS . spacing_250 ,
174
191
} ,
175
192
listContainerSydeBySyde : {
176
193
display : 'flex' ,
177
194
flex_direction : 'row' ,
178
195
justify_content : 'space-between' ,
179
196
flex_wrap : 'wrap' ,
197
+ gap : SPACINGS . spacing_250 ,
180
198
} ,
181
199
listRowContainer : {
182
200
display : 'flex' ,
183
201
flex_direction : 'column' ,
184
202
justify_content : 'left' ,
203
+ gap : SPACINGS . spacing_250 ,
185
204
} ,
186
205
listRowContainerBorder : true ,
187
206
listRow : {
188
207
display : 'flex' ,
189
208
flex_direction : 'column' ,
190
209
justify_content : 'left' ,
191
210
padding : `${ SPACINGS . spacing_250 } ${ SPACINGS . spacing_300 } ` ,
192
- gap : SPACINGS . spacing_150 ,
211
+ gap : SPACINGS . spacing_250 ,
193
212
} ,
194
213
listRowSideBySide : {
195
214
display : 'flex' ,
196
215
flex_direction : 'row' ,
197
216
justify_content : 'space-between' ,
198
217
flex_wrap : 'wrap' ,
218
+ gap : SPACINGS . spacing_250 ,
199
219
} ,
200
220
divider : {
201
221
lineSeparatorLabelVariant : LineSeparatorLabelVariantType . LABEL_DEFAULT ,
0 commit comments