Skip to content
Snippets Groups Projects
Unverified Commit a2f024ae authored by Julius Härtl's avatar Julius Härtl Committed by Morris Jobke
Browse files

Unquote string when removing the hash from a color


Signed-off-by: default avatarJulius Härtl <jus@bitgrid.net>
parent 3ec20be5
No related branches found
No related tags found
No related merge requests found
...@@ -27,9 +27,10 @@ ...@@ -27,9 +27,10 @@
* @return string The color without # * @return string The color without #
*/ */
@function remove-hash-from-color($color) { @function remove-hash-from-color($color) {
$color: unquote($color);
$index: str-index(inspect($color), '#'); $index: str-index(inspect($color), '#');
@if $index { @if $index {
$color: str-slice(inspect($color), 0, 1) + str-slice(inspect($color), 3); $color: str-slice(inspect($color), 2);
} }
@return $color; @return $color;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment