HOME


5h-3LL 1.0
DIR: /home/aissorg/public_html/scss/custom-styles/mixins
/home/aissorg/public_html/scss/custom-styles/mixins/
Upload File:
Current File : /home/aissorg/public_html/scss/custom-styles/mixins/_functions.scss
//
// Functions
// --------------------------------------------------

// All Headings
// 
@function headings() {
	@return unquote("h1, h2, h3, h4, h5, h6, [class^='heading-']");
}

/// Replace `$search` with `$replace` in `$string`
/// @author Hugo Giraudel
/// @param {String} $string - Initial string
/// @param {String} $search - Substring to replace
/// @param {String} $replace ('') - New value
/// @return {String} - Updated string
@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;
}