summaryrefslogtreecommitdiff
path: root/www/src/components/Space.astro
blob: bcdf18ea68d81d85e559b0eb6e6aeb897d63f131 (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
---
import Planets from './Planets.astro';
import Stars from './Stars.astro';
---

<div class="space">
    <Planets />
    <Stars />
</div>

<style lang="scss">
    .space {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        inset: 0;
        width: 100vw;
        min-height: 100vh;
        height: 100%;
        overflow: hidden;
        opacity: 0.6;
        z-index: -1;
    }
</style>