Code icon

SASS - Maps

Links


    // MAPS
    Arrays, Lists of Key Value Pairs. We tell which key to look for

    $font-weights: (
    "regular": 400,
    "medium": 500,
    "bold": 700,
    );

    body {
        font-weight: map-get($font-weights, bold);
    }