@use 'sass:map';

//Get the value for dispay-grid
$gridVal: (
    'ig': inline-grid,
    'g' : grid
);

//Get the value for [align, justify]-items
$itemsVal: (
    's': start,
    'e': end,
    'c': center,
    'str': stretch,
);

//Get the value for [justify,align]-content
$contentVal: (
    's': start,
    'e': end,
    'c': center,
    'str': stretch,
    'sa': space-around,
    'sb': space-between,
    'se': space-evenly,
);

//Get the value for auto-flow
$flowVal: (
    'r': row,
    'c': column,
    'rd': row dense,
    'cd': column dense,
);

