You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
What did you expect to happen?
Adding an offset in a grid-margin-x div should include the additional margin space.
What happened instead?
The offset occurs but since there isn't the additional margin space from a normal cell, the two columns do not align with each other.
Please List the Following:
OS & version: OS X Sierra
Node version (node -v) [Node v4+ is required] :
FoundationPress version (see line 3 in package.json): 2.10.3
Foundation version (see dependencies in package.json) : 6.4.1
From what I can tell in my testing, the issue occurs in _position.scss: .grid-margin-x > .small-offset-1 { margin-left: calc(8.33333% + 0.625rem); }
How can this bug be reproduced?
https://codepen.io/anon/pen/LzOorZ
What did you expect to happen?
Adding an offset in a grid-margin-x div should include the additional margin space.
What happened instead?
The offset occurs but since there isn't the additional margin space from a normal cell, the two columns do not align with each other.
Please List the Following:
From what I can tell in my testing, the issue occurs in _position.scss:
.grid-margin-x > .small-offset-1 {
margin-left: calc(8.33333% + 0.625rem);
}
Should be:
.grid-margin-x > .small-offset-1 {
margin-left: calc(8.33333% + 0.9375rem);
}
The text was updated successfully, but these errors were encountered: