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
Right now when you use
<mq-layout mq="md"> <div class="medium-layout">Medium Layout</div> </mq-layout>
It will compile into
<div> <div class="medium-layout">Medium Layout</div> </div>
I think it would be much easier for layout purposes that it would not encapsulate around an empty <div>
<div>
The text was updated successfully, but these errors were encountered:
Agree. The empty DIV adds an extra node into my DOM with a width of 0%, so content is not displaying natively.
Sorry, something went wrong.
Is this resolved? How to avoid wrapper div element?
No branches or pull requests
Right now when you use
It will compile into
I think it would be much easier for layout purposes that it would not encapsulate around an empty
<div>
The text was updated successfully, but these errors were encountered: