You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,8 +68,7 @@ Finally, properties are what give the selected elements of a rule declaration th
68
68
69
69
### Formatting
70
70
71
-
-[2.1.1](#2.1.1) <aname='2.1.1'></a> Use soft tabs (4 spaces) for indentation.
72
-
> This improves readability and keeps the space uniform
71
+
-[2.1.1](#2.1.1) <aname='2.1.1'></a> Use soft tabs (4 spaces) for indentation. This improves readability and keeps the space uniform
73
72
74
73
```sass
75
74
// bad
@@ -83,8 +82,7 @@ Finally, properties are what give the selected elements of a rule declaration th
83
82
}
84
83
```
85
84
86
-
-[2.1.2](#2.1.2) <aname='2.1.2'></a> Use classes for all selectors.
87
-
> Ids are reserved for E2E testing and data arguments are for JS libraries
85
+
-[2.1.2](#2.1.2) <aname='2.1.2'></a> Use classes for all selectors. Ids are reserved for E2E testing and data arguments are for JS libraries
88
86
89
87
```sass
90
88
// bad
@@ -102,8 +100,7 @@ Finally, properties are what give the selected elements of a rule declaration th
102
100
}
103
101
```
104
102
105
-
-[2.1.3](#2.1.3) <aname='2.1.3'></a> Avoid using tag selectors.
106
-
> Tag selectors come at a small performance penalty
103
+
-[2.1.3](#2.1.3) <aname='2.1.3'></a> Avoid using tag selectors. Tag selectors come at a small performance penalty
107
104
108
105
```sass
109
106
// bad
@@ -117,8 +114,7 @@ h3 {
117
114
}
118
115
```
119
116
120
-
-[2.1.4](#2.1.4) <aname='2.1.4'></a> When using multiple selectors in a rule declaration, give each selector its own line.
121
-
> This way its much easier to find selectors when scanning the document
117
+
-[2.1.4](#2.1.4) <aname='2.1.4'></a> When using multiple selectors in a rule declaration, give each selector its own line. This way its much easier to find selectors when scanning the document
0 commit comments