|
@@ -56,7 +56,7 @@ export default function (Alpine) {
|
|
|
start: { height: current+'px' },
|
|
|
end: { height: full+'px' },
|
|
|
}, () => el._x_isShown = true, () => {
|
|
|
- if (el.getBoundingClientRect().height == full) {
|
|
|
+ if (Math.abs(el.getBoundingClientRect().height - full) < 1) {
|
|
|
el.style.overflow = null
|
|
|
}
|
|
|
})
|