File size: 364 Bytes
24d78ad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /* This is your custom storybook stylesheet. */
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
/*
* Put your component styling within the Tailwind utilities layer.
* See the https://hexdocs.pm/phoenix_storybook/sandboxing.html guide for more info.
*/
@layer utilities {
* {
font-family: system-ui;
}
}
|