ben-eb/perfectionist

Support SCSS map

Open

#23 创建于 2015年9月16日

在 GitHub 查看
 (4 评论) (2 反应) (0 负责人)JavaScript (11 fork)github user discovery
enhancementhelp wanted

仓库指标

Star
 (229 star)
PR 合并指标
 (PR 指标待抓取)

描述

Input:

$breakpoints:(small: 767px,medium: 992px,large: 1200px);

Expanded output:

$breakpoints: (
  small: 767px,
  medium: 992px,
  large: 1200px
);

Nesting:

$map: (
    key1: value1,
    key2: (
        key-1: value-1,
        key-2: value-2,
    ),
    key3: value3
);

@include:

@include map(
  $dribble: #ea4c89,
  $facebook: #3b5998,
  $github: #171515,
  $google: #db4437,
  $twitter: #55acee
);

贡献者指南