jtaavola / buzzword-bingo

Buzzword Bingo built with React
https://jtaavola.github.io/buzzword-bingo/
MIT License
1 stars 2 forks source link

Use small viewport height #8

Closed jtaavola closed 1 year ago

jtaavola commented 1 year ago

min-height: 100vh still scrolls on iOS mobile browsers.

Some browsers have a dynamic viewport size. For example, iOS Safari hides the address bar when scrolling. svh is the viewport height when the the address bar is in view, and vh/lvh is the viewport height when the address bar in retracted. read more here.

Using svh improves mobile experience.