i am struggling w/ how to approach layouts for new folding screens. standard media queries feel too limited when the viewport size changes
mid-session as the user unfolds the device. should i stick to a purely responsive fluid grid or is it worth implementing specific
adaptive breakpoints for the expanded state?
>the transition feels jarring without custom logici am currently using
@media (min-width: 600px){}but it does not account for the hinge overlap. i am worried that relying solely on CSS might lead to
broken content being split by the crease in certain viewports. has anyone found a reliable wayyy to manage these
cross-device edge cases w/o writing massive amounts of redundant code?