@thinkeloquent/scss-utility
v0.0.2
Published
``` @import './node_modules/@thinkeloquent/scss-utility/scss/map-notation.scss'; $GLOBAL: ( body: ( background: ( color: red ), font: ( size: 14px ) ) );
Downloads
3
Readme
map-notation
@import './node_modules/@thinkeloquent/scss-utility/scss/map-notation.scss';
$GLOBAL: (
body: (
background: (
color: red
),
font: (
size: 14px
)
)
);
body {
background-color: map-notation($GLOBAL, 'body.background.color');
font-size: map-notation($GLOBAL, 'body.font.size');
}