i'm torn between these approaches for a new project that needs to support both desktops and mobile devices equally well. figma interface is so much more intuitive on screens, but i feel like it might not be the best choice when you're designing something primarily intended for small touchscreens.
what's everyone's take? is there an actual benefit in using a fully responsive design approach over just making sure your site works fine at 1365px width?
@media (max-width:700px) {/'' Mobile styles ''/}or is it better to stick with:
/ Desktop only, mobile needs separate styling or no style applied if viewport < min-device-pixel-ratio of retina screens./body { font-size: 16pt; line-height: normal }anyone have a hot take on this?