Merge pull request #28777 from iamejaaz/static-width-childtable

fix: pre defined columns width issue in childtable
This commit is contained in:
Akhil Narang 2024-12-16 10:50:41 +05:30 committed by GitHub
commit d2990caa48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -653,9 +653,21 @@
max-width: 550px;
}
.grid-row > .row .col:last-child,
.grid-row > .row .col:first-child,
.grid-row > .dialog-assignment-row .col:first-child,
.grid-row > .dialog-assignment-row .col:last-child {
max-width: 30px;
min-width: 30px;
}
.grid-row > .row .col:nth-child(2),
.grid-row > .dialog-assignment-row .col:nth-child(2) {
max-width: 40px;
min-width: 40px;
}
.grid-heading-row .grid-row .data-row.row,
.grid-body .rows .grid-row .data-row.row {
justify-content: space-between;
}
}
}
.grid-scroll-bar {