Nested grid: breakpoints not working?
See original GitHub issueSteps to reproduce
- Resize your browser
Versions
- Vue 2.2.6
- Vuetify 0.12.2
- Windows 10 x64
- Chrome 58
What is expected ?
The old behavior (pre 0.12) which I think is the correct one, is that the cards under the j
loop should take all the width of the parent when reaching the XS breakpoint.
What is actually happening ?
It does not take all the width.
Reproduction Link
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Nested grids with breakpoints - Stack Overflow
My problem is the $column-width: 200px; for the inner grid, as the generated media query uses min-widht: 600px, although at this point there...
Read more >Grid system · Bootstrap v5.0
Our grid supports six responsive breakpoints. Breakpoints are based on min-width media queries, meaning they affect that breakpoint and all those above it...
Read more >How the Bootstrap Grid Really Works | by Carol Skelly - Medium
Bootstrap allows us to nest row and col-* inside other col-* which enables more control over when columns stack vertically at specific breakpoints....
Read more >XY Grid | Foundation for Sites 6 Docs
A fully reworked new grid system in v6.4 which has all the variety ... @include xy-grid-frame($vertical, $nested, $gutters, $breakpoint, $include-base);.
Read more >CSS » Grid system | m.css
If you have never heard of it, it all boils down to a few breakpoints that ... a fixed width, it's not desirable...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Actually, only
wrap
is needed in the innerv-layout
. This makes sense: if the content overflows, we allow it to wrap. It it self-explaining.However, still, I don’t get why
column-[size]
androw-[size]
are necessary. I mean, if you want to make 3 columns onmd
and 3 lines onxs
you only need toxs12
andmd4
… Right?Maybe the docs could clarify how the
column-md
,row-md
, etc. works?