15 lines
368 B
SCSS
Executable file
15 lines
368 B
SCSS
Executable file
|
|
@function str-replace($string, $search, $replace: '') {
|
|
$index: str-index($string, $search);
|
|
@if $index {
|
|
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
|
|
}
|
|
@return $string;
|
|
}
|
|
|
|
@function em($pixels, $context: $browser-context) {
|
|
@return #{$pixels/$context}em;
|
|
}
|
|
|
|
|
|
|