4 变量

【强制】 变量命名必须采用 @foo-bar 形式,不允许使用 @fooBar 形式;

示例:

  1. /* Not so great */
  2. $cardColor: # fff;
  3. /* Better */
  4. $card-color: # fff;