// Generates classes for width and height
// .w-25, .w-50, .h-25, .h-50 and so on
// Get sizes from $sizes var

setka-sizing()
    obj = {
        width: w,
        height: h
    }

    // Width and height
    for $prop, $abbrev in obj
        for $size, $length in $sizes
            .{$abbrev}-{$size} {
                {$prop}: $length !important;
            }

    .mw-100 { max-width: 100% !important; }
    .mh-100 { max-height: 100% !important; }