Skip to content

Commit 123c4b0

Browse files
authored
fix(components/ag-grid): apply minimum height override to column container (#4333) (#4335)
[AB#3926782](https://dev.azure.com/blackbaud/f565481a-7bc9-4083-95d5-4f953da6d499/_workitems/edit/3926782) 🍒 #4333 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Refined AG Grid component height styling to improve layout consistency across grid sub-containers. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 3524bf7 commit 123c4b0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

libs/components/ag-grid/src/lib/styles/_base.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,11 @@
4242
}
4343
}
4444

45-
.ag-layout-auto-height .ag-body .ag-center-cols-viewport {
46-
min-height: var(--sky-ag-grid-min-height, 50px);
45+
.ag-layout-auto-height .ag-body {
46+
.ag-center-cols-container,
47+
.ag-center-cols-viewport {
48+
min-height: var(--sky-ag-grid-min-height, 50px);
49+
}
4750
}
4851

4952
.ag-scrollbar-invisible.sky-viewkeeper-fixed {

0 commit comments

Comments
 (0)