mirror of
https://github.com/smartyellow/status.git
synced 2025-01-18 21:47:58 +00:00
20 lines
310 B
Svelte
20 lines
310 B
Svelte
<script>
|
|
import AspectRatio from './components/aspectratio.svelte';
|
|
</script>
|
|
|
|
<AspectRatio>
|
|
<h1>here comes the dashboard</h1>
|
|
</AspectRatio>
|
|
|
|
<style>
|
|
:global(html, body) {
|
|
--radius: 10px;
|
|
--dark: #181818;
|
|
|
|
background-color: #000;
|
|
color: #fff;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|