css: Fix AG Grid cell line height by setting internal property to none (#4870)

* 📝 (App.css): add style for ag-cell class to remove internal calculated line height for better UI appearance

* 📝 (App.css): update CSS to remove internal calculated line height for specific elements in ag-grid cells
This commit is contained in:
Cristhian Zanforlin Lousa 2024-11-26 12:59:12 -03:00 committed by GitHub
commit 803b5b2c1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -183,3 +183,11 @@ body {
code {
font-family: var(--font-mono) s !important;
}
.ag-cell {
--ag-internal-calculated-line-height: none !important;
}
.ag-cell-wrapper > *:not(.ag-cell-value):not(.ag-group-value) {
--ag-internal-calculated-line-height: none !important;
}