question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Bug Report] v-layout wrapping with just "row" prop and not "wrap" prop

See original GitHub issue

Environment

Vuetify Version: 2.0.0 Last working version: 1.5.16 Vue Version: 2.0.0 Browsers: Chrome 75.0.3770.142 OS: Windows 10

Steps to reproduce

  1. v-layout with “row” prop only
  2. place three children inside where combine flex-basis exceeds 100%

Expected Behavior

Children should be maintained on single row

Actual Behavior

Children will wrap

Reproduction Link

https://codepen.io/pklitscher/pen/rXeJmy

Other comments

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: -12px;
    margin-left: -12px;
}

.row css appears to have wrap set. This was not the case in 1.5.16

I had a look through the migration docs and could not see info about the change.

Sorry if this is intended behaviour and I am abusing v-layout.

Thank you for 2.0 - it’s like Christmas.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

5reactions
douglasg14bcommented, Aug 10, 2019

@KaelWD

You’re abusing v-layout, .row is part of the new grid system and was never actually needed before.

I’d like to note that the 1.x documentation explicitly used the row prop in examples… If it wasn’t meant to be used/not necessary, the documentation examples probably shouldn’t be consistently using it?

0reactions
KaelWDcommented, Aug 10, 2019

6f502dfeb27ddb8de28eb140aef8857c754b0f92

Read more comments on GitHub >

github_iconTop Results From Across the Web

[Bug] Microsoft Word Wrapping & Paragraph
Mainly problems is that the image wraps and the paragraph is often messed up when i opening my assignment from Microsoft Word Mobile....
Read more >
43474 – [PATCH] wrap-option="wrap" doesn't work
The wrap-option property is meant to trigger > the line-breaking mechanism in its usual accepted meaning; that is, break > between words or...
Read more >
wrap, overflow - wrap - , and - word - break - LogRocket Blog
Because there is no soft wrap opportunity in it, and the value of the overflow-wrap property is normal , the word overflows its...
Read more >
Issue with text wrapping in textbox in Reporting | Telerik Forums
Changing that property to 'False' makes the textbox wrap the text correctly, but prevents my order line from resizing. This results in overlapping...
Read more >
java - How can I make JShell stop wrapping lines back on ...
Unfortunately though, when I'm using JShell, my "Screen Buffer Size Width" property is ignored and JShell wraps my long lines back on themselves ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found