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
The modal needs to have a parent with class="light" (or "dark" or "contrast"). This will be fixed by Add theme switching to Storybook #2326, but we can also put in a quick fix until that gets merged since it might be a while. We can add a <div className="light"> to the decorators in preview.js.
The compiled main.css file that we are importing in preview.js is not up to date. I don't know what that file is for and probably it should be deleted. We want to import the uncompiled file import '../client/styles/main.scss' as that will be current will all changes. But in order to do that we also need a Storybook addon to process it: https://storybook.js.org/addons/storybook-addon-sass-postcss
class="light"
(or "dark" or "contrast"). This will be fixed by Add theme switching to Storybook #2326, but we can also put in a quick fix until that gets merged since it might be a while. We can add a<div className="light">
to thedecorators
inpreview.js
.main.css
file that we are importing inpreview.js
is not up to date. I don't know what that file is for and probably it should be deleted. We want to import the uncompiled fileimport '../client/styles/main.scss'
as that will be current will all changes. But in order to do that we also need a Storybook addon to process it: https://storybook.js.org/addons/storybook-addon-sass-postcssOriginally posted by @lindapaiste in #2377 (comment)
The text was updated successfully, but these errors were encountered: