keycloak-theme/.storybook/preview-head.html

26 lines
570 B
HTML
Raw Normal View History

2024-06-06 05:46:48 +00:00
<style>
body.sb-show-main.sb-main-padded {
padding: 0;
}
2024-06-06 06:51:27 +00:00
/* Following styles are just meant to avoid white flash when switching from one story to another */
@keyframes fadeToTransparent {
from {
background-color: #393939;
}
to {
background-color: transparent;
}
}
html {
animation: fadeToTransparent 500ms forwards ease-in;
}
2024-06-07 03:20:57 +00:00
body > .sb-preparing-docs {
2024-06-06 06:51:27 +00:00
visibility: hidden;
}
2024-06-07 03:20:57 +00:00
body > .sb-preparing-story {
2024-06-06 06:51:27 +00:00
visibility: hidden;
2024-06-06 05:46:48 +00:00
}
2024-06-07 03:20:57 +00:00
</style>