1
0
Fork 0
fensir/src/pages/index.astro

34 lines
518 B
Text
Raw Normal View History

2024-11-02 23:03:12 +03:00
---
import Default from "@/layouts/Default.astro"
import Button from "@/components/Button.vue"
2024-11-02 23:03:12 +03:00
---
<Default>
<header>
<span class="rate"> 0 / 1000 RQT </span>
<Button class="sign" />
</header>
<main>
</main>
</Default>
<style>
header {
display: grid;
grid-auto-flow: column;
align-items: center;
justify-content: end;
margin-top: 10px;
gap: 30px;
}
span.rate {
color: var(--primary);
font-size: 16px;
}
button.sign {
margin-right: 15px;
}
</style>