responsive grid not responsive

I just saw this. I think the issue is that your page (on mobile devices) needs to have the right viewport settings in the header. You have to use the Skuid component method to bring Skuid into your page, and then include the following line of code above your skuid component.

<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, maximum-scale=1"></meta>

So, your final page would look something like this...

``` ```

The meta tag here instructs your device's browser that it should never zoom out to see content. Let me know if this fixes the issue.