You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//TODO: Заготовка, на будущее
|
|
//http://www.creative-seo.ru/blog/sass-maps/
|
|
@import "base/colors"
|
|
|
|
@function component_colors($key)
|
|
@if map-has-key($component_colors, $key)
|
|
@return map-get($component_colors, $key)
|
|
|
|
@warn "Unknown `#{$key}` in $component_colors."
|
|
@return null
|
|
|