waveterm/.storybook/global.css

19 lines
254 B
CSS
Raw Permalink Normal View History

2024-05-25 02:44:41 +02:00
body {
2024-05-28 21:12:28 +02:00
height: 100vh;
padding: 0;
2024-09-27 03:21:28 +02:00
overflow: auto;
2024-05-25 02:44:41 +02:00
}
#storybook-root {
2024-05-28 21:12:28 +02:00
height: 100%;
2024-05-25 02:44:41 +02:00
}
.grid-item {
2024-05-28 21:12:28 +02:00
background-color: aquamarine;
border: 1px black solid;
2024-05-25 02:44:41 +02:00
2024-05-28 21:12:28 +02:00
&.react-grid-placeholder {
background-color: orange;
}
2024-05-25 02:44:41 +02:00
}