Closed gavinmcfarland closed 3 months ago
If a container has min-height: 100vh.
min-height: 100vh
Polyfill creates the following CSS variable --fgp-min-height which points to:
--fgp-min-height
--fgp-min-height: var(--element-has-fgp) calc(100vh + var(--fgp-gap-row, 0%))
However 100vh + 0% can't be calculated, so the height is not applied.
100vh + 0%
Fixed by the latest release 5.0.0
5.0.0
If a container has
min-height: 100vh
.Polyfill creates the following CSS variable
--fgp-min-height
which points to:However
100vh + 0%
can't be calculated, so the height is not applied.