ben-eb/perfectionist

Support SCSS map

Open

#23 geöffnet am 16. Sept. 2015

Auf GitHub ansehen
 (4 Kommentare) (2 Reaktionen) (0 zugewiesene Personen)JavaScript (11 Forks)github user discovery
enhancementhelp wanted

Repository-Metriken

Stars
 (229 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

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
);

Contributor Guide