storybook-mobile
Version:
This addon offers suggestions on how you can improve the HTML, CSS and UX of your components to be more mobile-friendly.
50 lines (30 loc) • 1.71 kB
Markdown
# 📱storybook-mobile
[](http://unmaintained.tech/) [](https://badge.fury.io/js/storybook-mobile)
# Deprecated!
**Mobile web best practices are constantly evolving, and I haven't had the time to make the necessary updates to keep the warnings and hints up-to-date.
Please feel free to fork this library. I don't recommend using this add-on for new projects.**
## Original readme:
This addon offers suggestions on how you can improve the HTML, CSS and UX of your components to be more mobile-friendly.
<a href="https://storybook-mobile.netlify.app/?path=/story/signup-form--default" alt="screenshot of storybook-mobile addon">
<img src="./screenshot.png" width="600px">
</a>
[To see all available suggestions, check out a live storybook demo here.](https://storybook-mobile.netlify.app/?path=/story/signup-form--default)
## Quick Start
`yarn add -D storybook-mobile` or `npm install --save-dev storybook-mobile`
Next, add `storybook-mobile` to your list of addons:
`.storybook/main.js`
```diff
module.exports = {
// other config goes here
addons: [
+ 'storybook-mobile'
],
}
```
This addon works best along with the [@storybook/addon-viewport](https://github.com/storybookjs/storybook/tree/next/addons/viewport) addon, so please install that as well if you don't have it already.
## Contributing
If you have any suggestions or find any bugs, please make an issue or a pr!
**NOTE**: While developing this addon locally, if you are using npm <v7, you'll need to manually install `peerDependencies` like so:
```bash
npm install --no-save react react-dom
```