Skip to content

Instantly share code, notes, and snippets.

View mhz-tamb's full-sized avatar

Sergey Shiryaev mhz-tamb

View GitHub Profile
@mhz-tamb
mhz-tamb / paddings.scss
Last active November 16, 2015 13:05
SASS generation paggings
$paddings: (5, 10, 15, 20, 25, 30);
@each $padding in $paddings {
.mt-#{$padding} {
margin-top: #{$padding}px;
}
}
@each $padding in $paddings {
.mb-#{$padding} {