mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 10:28:22 +01:00
27 lines
509 B
Plaintext
27 lines
509 B
Plaintext
|
{% codeExample 'if-parent-selector'%}
|
||
|
@mixin app-background($color) {
|
||
|
#{if(&, '&.app-background', '.app-background')} {
|
||
|
background-color: $color;
|
||
|
color: rgba(#fff, 0.75);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include app-background(#036);
|
||
|
|
||
|
.sidebar {
|
||
|
@include app-background(#c6538c);
|
||
|
}
|
||
|
===
|
||
|
@mixin app-background($color)
|
||
|
#{if(&, '&.app-background', '.app-background')}
|
||
|
background-color: $color
|
||
|
color: rgba(#fff, 0.75)
|
||
|
|
||
|
|
||
|
|
||
|
@include app-background(#036)
|
||
|
|
||
|
.sidebar
|
||
|
@include app-background(#c6538c)
|
||
|
{% endcodeExample %}
|