@darion
You can set CSS styles on Storybook iframes by creating a global CSS file for your Storybook project.
1 2 3 4 |
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
|
1
|
import '../.storybook/global.css'; |
You can also target specific components or stories by adding CSS classes or IDs to your components and styling them individually in the global.css file.