@charset "UTF-8";

/* -----------------------------------------------------------------

    Copyright  : 2021
    Created on : 2021-10-07, 02:37 PM
    Author     : Sébastien FOURNIER <contact@sebastien-fournier.com>

    FRONT EACH FONT SIZES :
    =====================

------------------------------------------------------------------ */

@each $element, $config in $font-sizes-config {
    #{$element} {
        @if (map-get($config, 'rfs') == true) {
            @include rfs(map-get($config, "size"));
            @if (map-get($config, "line-height")) {
                @include rfs(map-get($config, "line-height"), line-height);
            }
        } @else {
            font-size: map-get($config, "size");
        }
    }
}