mirror of
https://github.com/danog/sass-site.git
synced 2024-11-30 04:29:17 +01:00
12 lines
399 B
Plaintext
12 lines
399 B
Plaintext
{% codeExample 'map-get', false %}
|
|
$font-weights: ("regular": 400, "medium": 500, "bold": 700);
|
|
|
|
@debug map.get($font-weights, "medium"); // 500
|
|
@debug map.get($font-weights, "extra-bold"); // null
|
|
===
|
|
$font-weights: ("regular": 400, "medium": 500, "bold": 700)
|
|
|
|
@debug map.get($font-weights, "medium") // 500
|
|
@debug map.get($font-weights, "extra-bold") // null
|
|
{% endcodeExample %}
|