mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
20 lines
287 B
Plaintext
20 lines
287 B
Plaintext
|
<% example do %>
|
||
|
$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
|
||
|
<% end %>
|