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: .storybook/stories/Theming/class.story.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ If you want to give a component a specific CSS class, do it this way:
10
10
<Row className="foo" ... >
11
11
```
12
12
13
-
Then if you want to style all Row components with this CSS class, specify it in the `THEME` that is passed to `const = useTheme(THEME)`:
13
+
Then if you want to style all Row components with this CSS class, specify it in the `THEME` that is passed to `const = useTheme(THEME);` (see Features/Theme):
Copy file name to clipboardExpand all lines: .storybook/stories/Theming/themes.story.mdx
+14-7Lines changed: 14 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ import { Meta } from '@storybook/addon-docs';
4
4
5
5
# Themes
6
6
7
-
This is a opt-in theme. You can use this theme as **baseline theme** (see next code snippet), use a **third-party theme** (see Library Themes), create your **custom theme** (see Features/Theme), or **stitch themes** (see Featues/Theme/stitch themes) by merging baseline theme, custom theme, and/or library theme.
7
+
Theming is opt-in. You can use the following theme as **baseline theme** (see next code snippet), use a **third-party theme** (see Library Themes), create your **custom theme** (see Features/Theme), or **stitch themes** (see Featues/Theme/stitch themes) by merging baseline theme, custom theme, and/or library theme.
0 commit comments