Созданы компоненты формы для создания event, кнопки "Создать" и "Добавить"

This commit is contained in:
DwCay
2022-10-07 12:54:44 +03:00
parent aa14acd61a
commit fc793eae6e
13 changed files with 301 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
<template lang="pug">
button(class="add-button-event") Создать событие
</template>
<script>
export default {
name: "AddEventButton"
}
</script>
<style lang="sass">
.add-button-event
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>