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

Nested grids are not context sensitive #20

Open
thebjorn opened this issue Mar 4, 2014 · 1 comment
Open

Nested grids are not context sensitive #20

thebjorn opened this issue Mar 4, 2014 · 1 comment

Comments

@thebjorn
Copy link

thebjorn commented Mar 4, 2014

This

<div class="row">
  <div class="span8">
    <div class="row">
      <div class="span4"></div>
      <div class="span4"></div>
    </div>
  </div>
  <div class="span4"></div>
</div>

is converted to

<div class="row">
  <div class="col-sm-8 col-md-8">
    <div class="row">
      <div class="col-sm-4 col-md-4"></div>
      <div class="col-sm-4 col-md-4"></div>
    </div>
  </div>
  <div class="col-sm-4 col-md-4"></div>
</div>

but should be converted to

<div class="row">
  <div class="col-sm-8 col-md-8">
    <div class="row">
      <div class="col-sm-6 col-md-6"></div>
      <div class="col-sm-6 col-md-6"></div>
    </div>
  </div>
  <div class="col-sm-4 col-md-4"></div>
</div>
@thebjorn
Copy link
Author

thebjorn commented Mar 5, 2014

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

1 participant