Сделала CalendarClockColumn

This commit is contained in:
Daria Golova
2022-10-14 14:24:38 +03:00
parent be7c4fd8b6
commit a2e5351743
4 changed files with 54 additions and 34 deletions

View File

@@ -0,0 +1,20 @@
<template lang="pug">
.calendar-clock-column.flex.flex-col.items-end.gap-y-43.pt-9.pb-12.px-3
span.font-medium.text-base(v-for="hour in hoursArray") {{ hour }}
</template>
<script>
export default {
name: "CalendarClockColumn",
props: {
hoursArray: Array,
},
};
</script>
<style lang="sass" scoped>
.calendar-clock-column
width: 80px
height: 100%
color: var(--font-dark-blue-color)
</style>