Merge pull request #34397 from iamejaaz/fix-grid-height-issue-1

fix(Grid): set max height for grid rows
This commit is contained in:
Ejaaz Khan 2025-10-14 17:30:50 +05:30 committed by GitHub
commit 929847afba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -677,8 +677,7 @@
} }
.column-limit-reached { .column-limit-reached {
background-color: var(--subtle-accent); background-color: var(--subtle-accent);
border-top-left-radius: var(--border-radius-md); border-radius: var(--border-radius-md);
border-top-right-radius: var(--border-radius-md);
border: 1px solid var(--table-border-color); border: 1px solid var(--table-border-color);
overflow-y: hidden; overflow-y: hidden;
.form-grid { .form-grid {
@ -688,6 +687,9 @@
&:focus-visible { &:focus-visible {
@include grid-focus(); @include grid-focus();
} }
.grid-static-col {
height: 38px;
}
.grid-static-col.col-xs-1 { .grid-static-col.col-xs-1 {
flex: 1 0 60px; flex: 1 0 60px;
width: 60px; width: 60px;