This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin margin($side, $size) { | |
$margin-size : 0; | |
@if $size == 'xs' { $margin-size : 5px; } | |
@else if $size == 's' { $margin-size : 10px; } | |
@else if $size == 'm' { $margin-size : 15px; } | |
@else if $size == 'l' { $margin-size : 20px; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin padding($side, $size) { | |
$padding-size : 0; | |
@if $size == 'xs' { $padding-size : 5px; } | |
@else if $size == 's' { $padding-size : 10px; } | |
@else if $size == 'm' { $padding-size : 15px; } | |
@else if $size == 'l' { $padding-size : 20px; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin padding($side, $size) { | |
$padding-size : 0; | |
@if $size == 'xs' { $padding-size : 5px; } | |
@else if $size == 's' { $padding-size : 10px; } | |
@else if $size == 'm' { $padding-size : 15px; } | |
@else if $size == 'l' { $padding-size : 20px; } |