feat: added linters, tests and started styles
This commit is contained in:
parent
38fb9a5189
commit
3adfe995d2
17 changed files with 645 additions and 42 deletions
25
src/components/Button.vue
Normal file
25
src/components/Button.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue