Созданы компоненты формы для создания event, кнопки "Создать" и "Добавить"
This commit is contained in:
21
src/components/buttons/AddEventButton.vue
Normal file
21
src/components/buttons/AddEventButton.vue
Normal 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>
|
||||
Reference in New Issue
Block a user