1
0
Fork 0

feat: added linters, tests and started styles

This commit is contained in:
Konrad Geletey 2024-11-03 00:10:03 +03:00
parent 38fb9a5189
commit 3adfe995d2
Signed by: kglt
GPG key ID: 386DEE24B60BD996
17 changed files with 645 additions and 42 deletions

View file

@ -1,16 +1,33 @@
---
import Default from "@/layouts/Default.astro"
import Button from "@/components/Button.vue"
---
---
<Default>
<header>
<span class="rate"> 0 / 1000 RQT </span>
<Button class="sign" />
</header>
<main>
</main>
</Default>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Astro</h1>
</body>
</html>
<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>