SCSS Compilation error using mixin / semantic grid

47 views Asked by At

I've just added the semantic grid css file to my project and imported it into my homepage.scss. The '.column(x)' is causing a compilation error. I'm obviously doing something stupid - anyone spot the issue?

@import '../layout/main.scss';
@import '../base/grid.scss';
$columns: 12;
$column-width: 60;
$gutter-width: 30em;
$total-width: 100%;

.banner{
    .column(6);
     background: pink;
     height: 5em;
 }
1

There are 1 answers

1
ratherblue On

SCSS syntax is different from LESS. You need:

@include column(6);