I really like Webflow so far, but that maximum breakpoint of 992 px is jus too small a screen size. Elements look too small on bigger screen sizes, but they look too big if I enlarge them on smaller sizes. Does anyone know if Webflow is adding another breakpoint for larger screens at some point? Or is there a way around this without custom code?
Aw. ok. I hope they add a bigger breakpoint in the future.
I guess I can compromise and just play around with using VW sizing for text and some other elements. That could work out ok.
I set all my spaces and sizes in rem units which depend on the main html font size, right? Then on some smaller desktop breakpoint (usually I use height of the screen to target those tiny laptops) and simply change html font size. Like so:
@media screen and (max-height: 580px) {
html {
font-size: 14px;
}
Everything on the page will scale down and will look better on smaller screen.