WIP Подтянула даты из календаря в колонки

This commit is contained in:
Daria Golova
2023-06-09 14:34:48 +03:00
parent 6d2787c3af
commit b3cc965de4
4 changed files with 72 additions and 67 deletions

View File

@@ -1,45 +0,0 @@
<template lang="pug">
.calendar-column-wrapper.flex.flex-col
.header.flex.flex-col.items-center.justify-center.top-0
span.font-bold.text-base.color-black 24 мая
span.text-smm.color-grey Понедельник
</template>
<script>
import { mapState } from "vuex";
export default {
name: "CalendarColumn",
props: {},
data() {
return {};
},
computed: {
...mapState({
today: (state) => state.calendar.currentDate,
}),
},
methods: {},
};
</script>
<style lang="sass" scoped>
.calendar-column-wrapper
border-right: 1px solid var(--border-light-grey-color)
width: 380px
.header
height: 60px
position: sticky
z-index: 5
background-color: var(--default-white)
.body
position: relative
z-index: 3
.color-black
color: var(--font-dark-blue-color)
.color-grey
color: var(--font-grey-color)
</style>