From 722a8b166ee06654d92669d1742150ddb2ed20c5 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Mon, 14 Dec 2015 22:26:39 +0100 Subject: [PATCH] Update README.md fixed some inconsistencies --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c6446cd..3d56585 100644 --- a/README.md +++ b/README.md @@ -312,11 +312,11 @@ For reference here is an anatomy of a rule set: **Good** ```scss - @include box-shadow(0 2px 2px rgba(0, 0, 0, .2)); + @include box-shadow(0 2px 2px rgba(0, 0, 0, 0.2)); ``` **Bad** ```scss - @include box-shadow( 0 2px 2px rgba( 0, 0, 0, .2 ) ); + @include box-shadow( 0 2px 2px rgba( 0, 0, 0, 0.2 ) ); ``` - When a decimal mark is needed always include the zero. @@ -342,11 +342,11 @@ For reference here is an anatomy of a rule set: **Good** ```scss - background: url('assets/image.png'); + background: url("assets/image.png"); ``` **Bad** ```scss - background: url('https://example.com/assets/image.png'); + background: url("https://example.com/assets/image.png"); ``` ### Declaration order