Изменила архитектуру проекта

This commit is contained in:
Daria Golova
2022-10-11 14:22:26 +03:00
parent d1d6ac73fc
commit 7aff71ed86
12 changed files with 29 additions and 29 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-family: Raleway
font-style: normal
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>

View File

@@ -0,0 +1,21 @@
<template lang="pug">
button.icon-plus(class="button-plus")
</template>
<script>
export default {
name: "ButtonPlus",
}
</script>
<style lang="sass" scoped>
.button-plus
outline: none
border: none
font-size: 12px
cursor: pointer
color: #4772F2
padding: 7px 7px 5px 7px
background-color: rgba(65, 105, 225, 0.25)
border-radius: 50%
</style>