Добавлена сетка tailwind, изменена архитектура файлов

This commit is contained in:
DwCay
2022-10-11 17:57:29 +03:00
parent 777ae13d9c
commit eaffd2462b
23 changed files with 628 additions and 322 deletions

View File

@@ -0,0 +1,24 @@
<template lang="pug">
button(class="add-button-event") Создать событие
</template>
<script>
export default {
name: "AddEventButton"
}
</script>
<style lang="sass" scoped>
.add-button-event
outline: none
border: none
cursor: pointer
font-style: normal
line-height: 19px
font-size: 16px
width: fit-content
color: var(--bg-white-color)
background-color: var(--btn-blue-color)
padding: 11px 16px 11px 16px
border-radius: 4px
</style>