É muito simples criar sua própria grade com SCSS. Dê uma olhada nesta dica!
// Variables
$cols: 12;
$max-wrapper-width: 920px;
$gutter-width: 20px;
// Mixin
@mixin col($col) {
width: (($max-wrapper-width - $gutter-width*($cols/$col - 1))/($cols/$col))/$max-wrapper-width*100%;
}
// Loop to create the grid
@for $i from 1 through 12 {
.l-col-#{$i} {
@include col($i);
}
}