You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vizality/renderer/src/styles/utils/functions/_logo.scss

7 lines
174 B

// Shorthand for logos
@function logo($name, $fallback: null) {
@if($fallback) {
@return var(--vz-logo-#{$name}, #{$fallback});
}
@return var(--vz-logo-#{$name});
}