Files
astra-frontend/src/components/base/buttons/BaseAddEvent.vue
Алексей Дёмин b41f093d9f Merge branch 'master' into UC-13
2022-10-13 21:08:56 +03:00

20 lines
404 B
Vue

<template lang="pug">
button.event-button.cursor-pointer.not-italic.leading-5.text-base.py-3.px-4 Создать событие
</template>
<script>
export default {
name: "AddEventButton",
};
</script>
<style lang="sass" scoped>
.event-button
outline: none
border: none
width: fit-content
color: var(--default-white)
background-color: var(--btn-blue-color)
border-radius: 4px
</style>