@use 'sass:map';

//Get the value for justify-content
$justify: (
    'sa': space-around,
    'sb': space-between,
    'se': space-evenly,
    'c': center,
    'fs': flex-start,
    'fe': flex-end,
);

//Get the value for flex-wrap
$wrap: (
    'w': wrap,
    'n': nowrap,
    'wr': wrap-reverse,
    'u': unset,
);

//Get the value for align-items
$align: (
    'b': baseline,
    's': stretch,
    'c': center,
    'fs': flex-start,
    'fe': flex-end,
);

//Get the value for flex-direction
$direction: (
    'r': row,
    'rr': row-reverse,
    'c': column,
    'cr': column-reverse,
);
