Search code examples
htmlcssruby-on-railsbulma

Why does my navbar in mobile view look so skinny with the bulma framework?


I'm creating a mobile web app with ruby on rails and the bulma framework and I'm trying to figure out why my screens don't seem responsive. Has anyone ran into this problem before?Here is what my application looks like in mobile view.

I would like my application to be responsive like this in mobile view.

The rest of my pages also seem to be unresponsive on mobile view.


Solution

  • @Malachi Bowman,

    Sometimes it happens to me that I forger the viewport:

    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    

    @ARK