到目前为止我的Gemfile中包含了
# Gemfile
gem 'sass-rails', '~> 5.0'
gem 'susy'
# config/application.rb
require 'susy'
我跑了"捆绑安装"没有错误。现在我正在尝试编写正常的Susy并设置应用程序:
$susy: (
columns: 12, /* we want our page to have 12 columns */
gutters: 3/4, /* space between columns with be 3/4 of a column */
math: fluid,
output: float,
gutter-position: inside,
);
现在,当我尝试调用Susy方法设置列时,我收到错误!我在元素上尝试了一个简单的列:
.example{
@include span(3 of 12)
;}
有什么想法吗?我在安装过程中遗漏了什么吗?
答案 0 :(得分:1)
在调用Susy方法之前,您需要在Sass文件中的某个位置@import 'susy';
。