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

25
src/components/Button.vue Normal file
View file

@ -0,0 +1,25 @@
<script setup lang="ts">
</script>
<template>
<button class="primary">
Sign in
</button>
</template>
<style scoped>
button.primary {
display: grid;
color: var(--primary);
padding: 3px 15px;
font-size: 16px;
border: 1px solid var(--accent);
background: var(--darken);
place-content: center;
place-items: center;
}
button.primary:hover {
background: var(--shadow);
}
</style>