aboutsummaryrefslogtreecommitdiff
path: root/src/routes/index.svelte
blob: 655f0c414fc9da621f1da923eb3af1d2b6c38232 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<script lang="ts">
	import WeatherCurrent from '../components/WeatherCurrent.svelte';
    import PredictedSpaceWeather from '../components/PredictedSpaceWeather.svelte';
</script>


<style>
    .homescreen {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        --bg-opacity: 1;
        background-color: #1a202c;
        background-color: rgba(26, 32, 44, var(--bg-opacity));
        --bg-opacity: 0.25;
    }
</style>

<svelte:head>
	<title>Aurora data</title>
</svelte:head>


<div class="homescreen">
    <WeatherCurrent/>
    <PredictedSpaceWeather />
</div>