Skip to content
New issue

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

Can't correctly nest grids. #3747

Closed
adriansalvatori opened this issue Mar 25, 2024 · 1 comment
Closed

Can't correctly nest grids. #3747

adriansalvatori opened this issue Mar 25, 2024 · 1 comment

Comments

@adriansalvatori
Copy link

This is about Bulma | A Bug.

Overview of the problem

This is about the Bulma CSS framework
I'm using Bulma 1.0.0
My browser is: Chrome / Edge

Description

When placing a grid inside another one, it'll asume the column-count of the parent one.
For example, I have a 3 cols grid, and inside, every child-item should also have a grid of 2 cols, these child-items will have 3 cols, not 2.

Steps to Reproduce

Write something like this.

<div class="fixed-grid has-3-cols">
    <div class="grid">
        <div class="cell">
            <div class="fixed-grid has-2-cols">
                <div class="grid">
                    <!-- This grid will not have 2 cols, but 3 --!>
                    <div class="cell">
                       <div class="title is-4">{{ $title }}</div>
                    </div>
                </div>
            </div>
        </div>
        <div class="cell">
        </div>
        <div class="cell">
        </div>
    </div>
</div>

Expected behavior

Nested grids should respect the column count of its immediate parent

@Ijee
Copy link

Ijee commented Apr 17, 2024

I am also facing this problem and it isn't even a direct parent div but way further down in the DOM.

Did you manage to solve this somehow or do we have to wait for an update and use a normal css grid in the meantime?

@jgthms jgthms closed this as completed in 6da946f Apr 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants