Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to off-set Columns in Susy Grid System?

I want to Off-Set Columns using Susy, like off-setting columns in Bootstrap.

I tried to use

@include span(4 at 4);

But that doesn't work. What I'm doing wrong?

like image 971
Ruby Avatar asked Sep 28 '14 00:09

Ruby


1 Answers

I just found out how to do this.

There is two functions (or mixins) called "push" and "pull"

@include push(4);
@include pull(4);

And that's really it :)

like image 192
Ruby Avatar answered Nov 04 '22 22:11

Ruby