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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
8.[Nesting](#nesting)
11
11
9.[Javascript Hooks](#javascript-hooks)
12
12
10.[Styling Elements](#styling-elements)
13
-
11.[!Important](#!important)
13
+
11.[Important](#important)
14
14
12.[Namespacing](#namespacing)
15
15
16
16
@@ -172,20 +172,20 @@ h3 {
172
172
}
173
173
```
174
174
175
-
### !Important
175
+
### Important
176
176
177
-
* Due to the fact we are using external libraries like Material Design Lite, there is a possibility that important will need to be used from time to time but please avoid it if you can.
177
+
* Due to the fact we are using external libraries like Material Design Lite, there is a possibility that `!importanta will need to be used from time to time but please avoid it if you can.
178
178
179
179
### Namespacing
180
180
181
-
*Custom Components `st-`
181
+
**Custom Components `st-`**
182
182
All custom basic components should be prefaced with st- which stands for Stratajet. An element with an st- prefix implies that ancillary classes can be removed and the element will be able to look as good as it does in the style guide. There should only be one st- class per element.
183
183
184
-
*Layout tweaks `lt-`
184
+
**Layout tweaks `lt-`**
185
185
All tweaks to components or layout should start with lt-. I would advise against having more that one lt- class. Please try to use atomic classes for variations instead of adding another lt- class.
186
186
187
-
*Javascript hooks `js-`
187
+
**Javascript hooks `js-`**
188
188
If an element requires a class for javascript functionality it should be prefaced with js-. Please note these classes should not be styled.
189
189
190
-
*Utility Classes `atomic class names`
190
+
**Utility Classes `atomic class names`**
191
191
All smaller tweaks to elements should be added with atomic classes. Please don't have too many atomic classes per element ie more than ten. If you find yourself with that number of classes please make a layout tweak class.
0 commit comments