Skip to content

fix: enable Tailwind with storybook #15418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply theme selector
  • Loading branch information
BrunoQuaresma authored and jaaydenh committed Nov 8, 2024
commit 8203a3cb9bf57cd40c63b03f38bc5030e256c8ed
6 changes: 6 additions & 0 deletions site/.storybook/preview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,12 @@ function withTheme(Story, context) {
const { themeOverride } = DecoratorHelpers.useThemeParameters();
const selected = themeOverride || selectedTheme || "dark";

// Ensure the correct theme is applied to Tailwind CSS classes by adding the
// theme to the HTML class list. This approach is necessary because Tailwind
// CSS relies on class names to apply styles, and dynamically changing themes
// requires updating the class list accordingly.
document.querySelector("html")?.classList.add(selected);

return (
<StrictMode>
<StyledEngineProvider injectFirst>
Expand Down