Raise styling-and-css into configure

This commit is contained in:
Shaun Lloyd 2023-04-19 15:42:32 -04:00
parent d868494ce6
commit 50f7a371b6
3 changed files with 35 additions and 58 deletions

View File

@ -4,13 +4,9 @@ title: 'Styling and CSS'
There are many ways to include CSS in a web application, and correspondingly there are many ways to include CSS in Storybook. Usually, it is best to try and replicate what your application does with styling in Storybooks configuration. To make this easier, we recommend using [`@storybook/addon-styling`](https://github.com/storybookjs/addon-styling).
### CSS-in-JS
## Importing CSS files
CSS-in-JS libraries are designed to use basic JavaScript, and they often work in Storybook without any extra configuration. Some libraries expect components to render in a specific rendering “context” (for example, to provide themes), which can be accomplished with `@storybook/addon-styling`'s [`withThemeFromJSXProvider` decorator](https://github.com/storybookjs/addon-styling/blob/next/docs/api.md#withthemefromjsxprovider).
### Importing CSS files
To add global CSS for all of your stories, import it in [`.storybook/preview.js`](./overview.md#configure-story-rendering).
Storybook is pre-configured to recognize imports for css files. To add global CSS for all of your stories, import it in [`.storybook/preview.js`](./overview.md#configure-story-rendering).
```js
// .storybook/preview.js
@ -18,14 +14,20 @@ To add global CSS for all of your stories, import it in [`.storybook/preview.js`
import '../src/styles/global.css';
```
If your component files import their CSS, Storybook's webpack configuration will work out of the box. The noticeable exception to this is if you're using a CSS compiler tools like Sass or Postcss.
### CSS compilers
If you're using tools like Sass or Postcss, you can either install and configure [`@storybook/addon-styling`](https://github.com/storybookjs/addon-styling#storybookaddon-styling), or customize [Storybook's webpack configuration](../builders/webpack.md#extending-storybooks-webpack-config) and include the appropriate loader. If you're using Vite, this all comes pre-configured for you.
If your component files import their CSS files, this will work too. The noticeable exception to this is if you're using CSS processor tools like Sass or Postcss.
<FeatureSnippets paths={['configure/css-troubleshooting/angular.mdx']} />
### Adding webfonts
## CSS processors
If you're using Vite as your builder, you're covered! Vite supports Sass and PostCSS out-of-the-box 🎉
However, if you're using Webpack and want to use Sass and PostCss, you'll need some extra configuration. We recommend installing [`@storybook/addon-styling`](https://github.com/storybookjs/addon-styling#storybookaddon-styling) to help you configure these tools. Or if you'd prefer, you can customize [Storybook's webpack configuration yourself](../builders/webpack.md#extending-storybooks-webpack-config) to include the appropriate loader(s).
## CSS-in-JS
CSS-in-JS libraries are designed to use basic JavaScript, and they often work in Storybook without any extra configuration. Some libraries expect components to render in a specific rendering “context” (for example, to provide themes), which can be accomplished with `@storybook/addon-styling`'s [`withThemeFromJSXProvider` decorator](https://github.com/storybookjs/addon-styling/blob/next/docs/api.md#withthemefromjsxprovider).
## Adding webfonts
If you need webfonts to be available, you may need to add some code to the [`.storybook/preview-head.html`](./story-rendering.md#adding-to-head) file. We recommend including any assets with your Storybook if possible, in which case you likely want to configure the [static file location](./images-and-assets.md#serving-static-files-via-storybook-configuration).

View File

@ -34,6 +34,22 @@ Go to your Storybook to view the rendered component. Its OK if it looks a bit
Depending on your technology stack, you also might need to configure the Storybook environment further.
## Render component styles
Storybook isnt opinionated about how you generate or load CSS. It renders whatever DOM elements you provide. But sometimes, things wont “look right” out of the box.
You may have to configure your CSS tooling for Storybooks rendering environment. Here are some setup guides for popular tools in the community.
- [Tailwind](https://storybook.js.org/recipes/tailwindcss/)
- [Material UI](https://storybook.js.org/recipes/@mui/material/)
- [Vuetify](https://storybook.js.org/recipes/vuetify/)
- [Styled Components](https://storybook.js.org/recipes/styled-components/)
- [Emotion](https://storybook.js.org/recipes/@emotion/styled/)
- [Sass](https://storybook.js.org/recipes/sass/)
- [Bootstrap](https://storybook.js.org/recipes/bootstrap/)
Don't see the tool that you're looking for? Check out the [styling and css](../configure/styling-and-css.md) page for more details.
## Configure Storybook for your stack
Storybook comes with a permissive [default configuration](../configure/overview.md). It attempts to customize itself to fit your setup. But its not foolproof.
@ -91,47 +107,6 @@ Use [decorators](../writing-stories/decorators.md) to “wrap” every story in
</details>
## Render component styles
Storybook isnt opinionated about how you generate or load CSS. It renders whatever DOM elements you provide. But sometimes, things wont “look right” out of the box.
You may have to configure your CSS tooling for Storybooks rendering environment. Here are some tips on what could help:
<details>
<summary>CSS-in-JS like styled-components and Emotion</summary>
If you are using CSS-in-JS, chances are your styles are working because theyre generated in JavaScript and served alongside each component. Theme users may need to add a decorator to `.storybook/preview.js`, [see above](#component-context).
</details>
<details>
<summary>@import CSS into components</summary>
Storybook allows you to import CSS files in your components directly. But in some cases you may need to [tweak its Webpack configuration](../builders/webpack.md#override-the-default-configuration). Angular components require [a special import](../configure/styling-and-css.md#importing-css-files).
</details>
<details>
<summary>Global imported styles</summary>
If you have global imported styles, create a file called [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering) and import the styles there. They will be added by Storybook automatically for all stories.
</details>
<details>
<summary>Add external CSS or webfonts in the &lt;head&gt;</summary>
Alternatively, if you want to inject a CSS link tag to the `<head>` directly (or some other resource like a webfont link), you can use [`.storybook/preview-head.html`](../configure/story-rendering.md#adding-to-&#60head&#62) to add arbitrary HTML.
</details>
<details>
<summary>Load fonts or images from a local directory</summary>
If you're referencing fonts or images from a local directory, you'll need to configure the Storybook script to [serve the static files](../configure/images-and-assets.md).
</details>
## Load assets and resources
If you want to [link to static files](../configure/images-and-assets.md) in your project or stories (e.g., `/fonts/XYZ.woff`), use the `-s path/to/folder` flag to specify a static folder to serve from when you start up Storybook. To do so, edit the `storybook` and `build-storybook` scripts in `package.json`.

View File

@ -321,6 +321,11 @@ module.exports = {
title: 'Overview',
type: 'link',
},
{
pathSegment: 'styling-and-css',
title: 'Styling and CSS',
type: 'link',
},
{
pathSegment: 'upgrading',
title: 'Upgrading',
@ -356,11 +361,6 @@ module.exports = {
title: 'TypeScript',
type: 'link',
},
{
pathSegment: 'styling-and-css',
title: 'Styling and CSS',
type: 'link',
},
{
pathSegment: 'images-and-assets',
title: 'Images and assets',