Susy syntax error: Undefined mixing 'span-columns'

有些话、适合烂在心里 提交于 2019-12-13 06:59:03

问题


I am new to Susy and I am trying to utilize span-columns mixin however I am getting the following error:

Syntax error: Undefined mixin 'span-columns'

I have installed compass-susy-plugin (0.9) and I do not have the Susy gem installed.

SCSS Files include screen.scss and _base.scss

screen.scss

// Imports -------------------------------------------------------------------

@import "base";
@import "typography";

/* Layout ------------------------------------------------------------------*/

.container {
  @include container;
  @include susy-grid-background;
}

.main {
    @include span-columns(8,12);
}

.left-sidebar {  
  @include columns(2);  
  @include alpha;
  background-color: red;  
}

.right-sidebar {  
  @include columns(2);  
  @include omega;  
  background-color: red;
}

_base.scss

// Imports -------------------------------------------------------------------

@import "susy";

// Grid ----------------------------------------------------------------------

$total-cols             : 12;
$col-width              : 4em;
$gutter-width           : 1em;
$side-gutter-width      : $gutter-width;

$show-grid-backgrounds  : true;

回答1:


According to the changelog that I have, the columns mixin in version 0.9 was renamed to span-columns in version 1.0 so I would say that the span-columns mixin did not exist back in the 0.9 branch of Susy.

Current version is 1.0.5 and this is what I am using without issues (so far).




回答2:


Here is another answer from the docs:

Susy 2.x supports two syntax options, side by side. If you want to use the latest release but keep the old syntax, change your import from susy to susyone.

// With Susy 2.x installed... @import "susyone";



来源:https://stackoverflow.com/questions/14596028/susy-syntax-error-undefined-mixing-span-columns

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!