fix: reenable scrolling
Otherwise information is lost. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
This commit is contained in:
parent
f5e64cdd7d
commit
49cbd6178e
2 changed files with 7 additions and 0 deletions
6
.storybook/fix.css
Normal file
6
.storybook/fix.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
/* Importing Tailwind has direct impact on some Storybook rules.
|
||||
* Undo the most negative effects here. */
|
||||
html,
|
||||
body {
|
||||
overflow: auto;
|
||||
}
|
|
@ -4,6 +4,7 @@ import type { Preview } from '@storybook/svelte';
|
|||
import '../src/theme.postcss';
|
||||
//import '@skeletonlabs/skeleton/styles/skeleton.css';
|
||||
import '../src/app.postcss';
|
||||
import './fix.css';
|
||||
|
||||
const preview: Preview = {
|
||||
parameters: {
|
||||
|
|
Loading…
Reference in a new issue