File "_prefix.scss"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/elementor/app/assets/styles/functions/_prefix.scss
File size: 229 bytes
MIME-type: text/plain
Charset: utf-8

// Function: Prefix
// - Argument: string
// - Output string + hypen, E.g: .#{$prefix}some-element => .prefix-some-element


@function prefix($prefix:null){
  @if $prefix{
	@return $prefix + "-";
  } @else {
	@return null;
  }
}