1

I'm using Bourbon and Neat, and got everything working as it should, apart from one thing. When I change the values of $column and $gutter in _grid-setting, nothing changes. Those are the only two variables that don't have any effect.

Changing $grid-columns or $max-width work as they should, so that confirms that all files are in the right place and get included.

Bart Rylant
  • 173
  • 1
  • 1
  • 7

2 Answers2

0

Did you make sure that grid-settings is getting imported before you @import neat? If you try to import it after, it will have already used the default values.

There is some information about that in the project Readme.

  • Yes, it is imported before neat. Also, the other vars I change in `grid-settings` _do_ have impact on the grid. The problem is with just those two variables. – Bart Rylant May 29 '15 at 05:39
0

Try flagging them with !global... kind of hacky but it might work.

ravenwilde
  • 83
  • 1
  • 4