This commit is contained in:
Rico Sta. Cruz 2016-02-16 11:42:01 +08:00
parent 5f566e452c
commit 39c8a43d48
1 changed files with 3 additions and 1 deletions

View File

@ -112,9 +112,11 @@ $i: 6;
```scss ```scss
@if $position == 'left' { @if $position == 'left' {
position: absolute;
left: 0; left: 0;
} }
@else $position == 'top' { @else {
position: static;
} }
``` ```