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
Need to provide the @global-gutter variable in PX and also
You also need an uptodate less compiler so that it does not perform the calculation inside the calc brackets.
Just thought it might be useful to some people.
Thanks
Rolf
The text was updated successfully, but these errors were encountered:
Hi there,
Not an issue as such just a modification I have added to enable a fluid grid to have fixed gutters..this relies on calc so IE9 up.
.grid-column-width(@n) {
//width: @column-width * @n - (@column-margin*(@total-columns - @n)/@total-columns);
width: calc( ~ "@{column-width}% * @{n} - ( @{global-gutter} - ( (@{global-gutter} / @{total-columns}) * @{n} ) ) ");
}
and
Need to provide the @global-gutter variable in PX and also
You also need an uptodate less compiler so that it does not perform the calculation inside the calc brackets.
Just thought it might be useful to some people.
Thanks
Rolf
The text was updated successfully, but these errors were encountered: