is anyone else struggling with deciding when to switch from fluid layouts to specific breakpoints for new foldables? i feel like using just
width: 100%
is fine for standard mobile, but the
sudden aspect ratio shifts on larger-screen tablets are breaking my navigation. im trying to avoid heavy adaptive logic where we serve entirely different templates, but
purely fluid layouts feel a bit messy when the screen expands.
>should i just rely on container queries for everything now?it seems like it might be the
most efficient way to handle these mid-sized viewport transitions without writing too many media queries.
i'm secretly terrified that my css bundle is going to get huge if i add too many specific rules for every device type ❓