mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 02:17:57 +01:00
20 lines
317 B
Plaintext
20 lines
317 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 %>
|