# elementor/3.8.0/app/assets/styles/functions/_prefix.scss

Elementor Website Builder – more than just a page builder, version 3.8.0. 13 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.8.0/code/app/assets/styles/functions/_prefix.scss
- Raw: https://pluginprobe.com/plugins/elementor/3.8.0/raw/app/assets/styles/functions/_prefix.scss
- Modified: 2022-10-03T17:24:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.8.0/code/app/assets/styles/functions/_prefix.scss#L10-L20`.

```scss
// 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;
  }
}

```
