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
Now you can change almost any piece of a style guide. For example you can change a font and a background color:
24
+
25
+
```css
26
+
.ReactStyleguidist-common__font {
27
+
font-family: "Comic Sans MS", "Comic Sans", cursive;
28
+
}
29
+
.ReactStyleguidist-colors__base-bg {
30
+
background: hotpink;
31
+
}
32
+
```
33
+
34
+
More [in the docs](https://github.com/sapegin/react-styleguidist#how-to-change-styles-of-a-style-guide).
35
+
36
+
Related issue: #32
37
+
38
+
### Other new features
39
+
40
+
* Table of contents (#28).
41
+
* Ability to use Markdown in components and props descriptions (#32).
42
+
*`PropTypes.shape` support (#20).
43
+
* Ability to change path line via `getComponentPathLine` option (#41).
44
+
45
+
## Bug fixes
46
+
47
+
* Improved styles isolation: Styleguidist styles should not interfer with your components styles.
48
+
* Removed sanitize.css that causes a lot of problems with component styles.
49
+
* Fixed issue when using components with the same names as component in Styleguidist.
50
+
51
+
## Other changes
52
+
53
+
* Use [markdown-it](https://github.com/markdown-it/markdown-it) and [Markdown React](https://github.com/alexkuz/markdown-react-js) instead of Marked.
54
+
* A lot of [documentation](https://github.com/sapegin/react-styleguidist/blob/master/Readme.md) improvements and new examples [in the demo style guide](http://sapegin.github.io/react-styleguidist/).
55
+
1
56
# 1.2.1 - 2015-11-18
2
57
3
58
* Stateless React components support (#44, #46, by @sunesimonsen).
0 commit comments