Commit 4db0b6a 1 parent 58e9e25 commit 4db0b6a Copy full SHA for 4db0b6a
File tree 1 file changed +12
-1
lines changed
packages/design-system/src/elements/toniq-list-table
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -226,8 +226,13 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
226
226
will-change: filter;
227
227
}
228
228
229
+ .column-wrapper.fill {
230
+ flex: 1;
231
+ }
232
+
229
233
.column-content {
230
- min-height: 48px;
234
+ height: 48px;
235
+ max-height: 48px;
231
236
width: -webkit-fill-available;
232
237
width: -moz-available;
233
238
align-items: center;
@@ -264,6 +269,10 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
264
269
border-top-color: ${ toniqColors . dropShadow . backgroundColor } ;
265
270
}
266
271
272
+ .content-wrapper {
273
+ width: 100%;
274
+ }
275
+
267
276
.loading-wrapper {
268
277
transition: ${ toniqDurations . pretty } ;
269
278
opacity: 1;
@@ -398,6 +407,7 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
398
407
class =${ classMap ( {
399
408
'column-wrapper' : true ,
400
409
sticky : isSticky ,
410
+ fill : ! ! columnItem . option ?. spaceEvenly ,
401
411
} ) }
402
412
style=${ ifDefined (
403
413
isSticky
@@ -433,6 +443,7 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
433
443
` ,
434
444
html `
435
445
< div
446
+ class ="content-wrapper "
436
447
${ listen ( 'click' , ( event ) => {
437
448
event . preventDefault ( ) ;
438
449
event . stopPropagation ( ) ;
You can’t perform that action at this time.
0 commit comments