fix(grid): fix grid scroll to bottom error when only set max-height (#3531)
This commit is contained in:
parent
66910344ac
commit
fd3d6a79f2
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1258,6 +1258,7 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
max-height: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue