fix(grid): fix grid scroll to bottom error when only set max-height (#3531)

This commit is contained in:
gimmyhehe 2025-06-24 19:20:53 +08:00 committed by GitHub
parent 66910344ac
commit fd3d6a79f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -1439,5 +1439,6 @@
@apply left-0; @apply left-0;
@apply overflow-hidden; @apply overflow-hidden;
@apply h-full; @apply h-full;
max-height: inherit;
} }
} }

View File

@ -1258,6 +1258,7 @@
left: 0; left: 0;
overflow: hidden; overflow: hidden;
height: 100%; height: 100%;
max-height: inherit;
} }
} }