mirror of
https://github.com/danbulant/nollup-apexcharts-bug
synced 2026-07-05 19:11:22 +00:00
19 lines
313 B
Svelte
19 lines
313 B
Svelte
<style>
|
|
main {
|
|
background: #0bf5cc;
|
|
height: 100%;
|
|
}
|
|
* :global(.card) {
|
|
background: white;
|
|
width: 256px;
|
|
height: 256px;
|
|
display: inline-block;
|
|
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
margin: 24px;
|
|
}
|
|
</style>
|
|
|
|
<!-- routify:options index=1 -->
|
|
<main>
|
|
<slot />
|
|
</main>
|