WIP Добавила DescriptionCard

This commit is contained in:
Daria Golova
2022-11-10 18:59:50 +03:00
parent f6659c4728
commit a2d4f06674
5 changed files with 47 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
<template lang="pug">
.wrapper.px-4.pt-14px.pb-4.font-medium
</template>
<script>
export default {
name: "CalendarEventDescriptionCard",
props: {
ownerEvent: Object,
eventTypes: {
type: Array,
default() {
return [];
},
},
},
};
</script>
<style lang="sass" scoped>
.wrapper
width: 426px
background-color: var(--default-white)
border-radius: 4px
color: var(--font-black-color)
box-shadow: var(--default-shadow)
</style>