0

I am new to neat. I want to know what i am doing wrong here as i am trying to reset the auto margins and paddings between columns in the grid . this is my code

$grid-columns: 12;
$gutter: 0px;

The grid column variables are working but the gutter is not. can u help me out. thanks.

designerNProgrammer
  • 2,621
  • 5
  • 34
  • 46

1 Answers1

0

Try setting the gutter before importing neat. Eg:

$gutter: 0em;
@import "neat/neat";
$grid-columns: 12;
joshua.paling
  • 13,762
  • 4
  • 45
  • 60