sass-site/source/code-snippets/example-placeholder.liquid

17 lines
254 B
Plaintext
Raw Normal View History

2023-05-16 13:26:56 +02:00
{% codeExample 'placeholder' %}
2023-05-30 23:23:34 +02:00
.alert:hover, %strong-alert {
font-weight: bold;
}
2023-05-16 13:26:56 +02:00
2023-05-30 23:23:34 +02:00
%strong-alert:hover {
color: red;
}
===
.alert:hover, %strong-alert
font-weight: bold
2023-05-16 13:26:56 +02:00
2023-05-30 23:23:34 +02:00
%strong-alert:hover
color: red
2023-05-16 13:26:56 +02:00
{% endcodeExample %}