From 39c8a43d481666ab4bde415a9b81cf17f7c46ba7 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Tue, 16 Feb 2016 11:42:01 +0800 Subject: [PATCH] Update --- sass.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sass.md b/sass.md index 46fead57f..230c5d806 100644 --- a/sass.md +++ b/sass.md @@ -112,9 +112,11 @@ $i: 6; ```scss @if $position == 'left' { + position: absolute; left: 0; } -@else $position == 'top' { +@else { + position: static; } ```