We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is about Bulma.
This is about the Bulma CSS framework
I'm using Bulma version [1.0.2] My browser is: Chromium: 131.0.6778.85 (Official Build) (x86_64]
I am sure this issue is not a duplicate
Use devtools set to responsive and observe navbar behaves strangely when narrowing the view port below 600px.
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Hello Bulma!</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" /> </head> <body> <nav class="navbar" style="background-color: teal"> <span class="navbar-item">Hello Bulma!</span> </nav> <div class="section"> <div class="grid is-col-min-24"> <div class="cell"> <div class="box">cell one</div> </div> <div class="cell"> <div class="box">cell two</div> </div> <div class="cell"> <div class="box">cell three</div> </div> </div> </div> </body> </html>
Navbar covers full width of viewport:
Below 600px it does not:
The text was updated successfully, but these errors were encountered:
Note the 600px is a result of using is-col-min-24, if you change to e.g. is-col-min-12 then it breaks at 300px.
600px
is-col-min-24
is-col-min-12
300px
And since is-col-min is based on rem the exact values won't quite match.
is-col-min
rem
Sorry, something went wrong.
No branches or pull requests
This is about Bulma.
Overview of the problem
This is about the Bulma CSS framework
I'm using Bulma version [1.0.2]
My browser is: Chromium: 131.0.6778.85 (Official Build) (x86_64]
I am sure this issue is not a duplicate
Description
Use devtools set to responsive and observe navbar behaves strangely when narrowing the view port below 600px.
Steps to Reproduce
Expected behavior
Navbar covers full width of viewport:
Actual behavior
Below 600px it does not:
The text was updated successfully, but these errors were encountered: