@@ -27,8 +27,8 @@ Sass is an amazing preprocesor but some of their rules could become missused
27
27
28
28
#### Ampersand usage is allowed for modifiers & similar
29
29
30
- - This is because usually you would be only searching for the element or the modifier name
31
- - As you can see this doesn't break the first rule
30
+ - This is because usually you would be only searching for the element or the modifier name
31
+ - As you can see this doesn't break the first rule
32
32
33
33
``` scss
34
34
.x-elementName {
@@ -43,7 +43,7 @@ Sass is an amazing preprocesor but some of their rules could become missused
43
43
44
44
#### For conditional modifiers prepending is prefered
45
45
46
- - This limits the nesting and shows the required modifier
46
+ - This limits the nesting and shows the required modifier
47
47
48
48
``` scss
49
49
.x-elementName {
@@ -58,13 +58,13 @@ Sass is an amazing preprocesor but some of their rules could become missused
58
58
59
59
#### Each property should follow the next order
60
60
61
- - Tag, element or layout (a, .x-elementname, etc...)
62
- - Pseudoselectors (: hover , : focus , etc...)
63
- - Statuses (.is--statusname, etc...)
64
- - Modifiers (.--modifiername-value, etc...)
65
- - Subelements or childs
66
- - Overwrites
67
- - Media queries
61
+ - Tag, element or layout (a, .x-elementname, etc...)
62
+ - Pseudoselectors (: hover , : focus , etc...)
63
+ - Statuses (.is--statusname, etc...)
64
+ - Modifiers (.--modifiername-value, etc...)
65
+ - Subelements or childs
66
+ - Overwrites
67
+ - Media queries
68
68
69
69
#### And for each grouped rules should go in the end
70
70
0 commit comments