mirror of
https://github.com/danog/sass-site.git
synced 2025-01-08 14:08:45 +01:00
20 lines
311 B
Plaintext
20 lines
311 B
Plaintext
|
{% codeExample 'each-list' %}
|
||
|
$sizes: 40px, 50px, 80px;
|
||
|
|
||
|
@each $size in $sizes {
|
||
|
.icon-#{$size} {
|
||
|
font-size: $size;
|
||
|
height: $size;
|
||
|
width: $size;
|
||
|
}
|
||
|
}
|
||
|
===
|
||
|
$sizes: 40px, 50px, 80px
|
||
|
|
||
|
@each $size in $sizes
|
||
|
.icon-#{$size}
|
||
|
font-size: $size
|
||
|
height: $size
|
||
|
width: $size
|
||
|
{% endcodeExample %}
|