blog/themes/embark/source/css/00-functions/_functions.get-spacing-stac...

13 lines
306 B
SCSS
Raw Normal View History

/// Spacing Stack
/// Get the Stack spacing of the map
/// @group Spacing
/// @param {string} $key
@function get-spacing-stack($key) {
@if map-has-key($spacingStack, $key) {
@return map-get($spacingStack, $key);
}
@warn "The key #{$key} is not in the map $spacingStack";
@return null;
}