diff --git a/src/pages/calendar/components/CalendarColumn.vue b/src/pages/calendar/components/CalendarBackground.vue
similarity index 60%
rename from src/pages/calendar/components/CalendarColumn.vue
rename to src/pages/calendar/components/CalendarBackground.vue
index ac8648a..8f70a54 100644
--- a/src/pages/calendar/components/CalendarColumn.vue
+++ b/src/pages/calendar/components/CalendarBackground.vue
@@ -1,29 +1,17 @@
- .calendar-column-wrapper.flex.flex-col
+ .calendar-background-wrapper.flex.flex-col
.header.flex.items-center.justify-between.py-2.px-6
- .flex.items-center
- img.avatar-wrapper.mr-2(:src="info.avatar" alt="Team member")
- span.member-name.font-medium.text-base.mr-6 {{ info.name }}
- img.icon-wrapper.cursor-pointer(src="@/assets/icons/lock.svg")
- base-doc-ok-button
.body.flex.flex-col
- span.block.time-indicator(v-if="isShownIndicator" :style="indicatorLocation")
+ .time-circle-indicator.-left-6(v-if="isShownIndicator" :style="circleIndicatorLocation")
+ span.time-line-indicator.block(v-if="isShownIndicator" :style="lineIndicatorLocation")
.line.flex.items-center(v-for="hour in hoursArray" :key="hour")
.middle-line
diff --git a/src/pages/calendar/components/CalendarClockColumn.vue b/src/pages/calendar/components/CalendarClockColumn.vue
index d166fb1..203cc72 100644
--- a/src/pages/calendar/components/CalendarClockColumn.vue
+++ b/src/pages/calendar/components/CalendarClockColumn.vue
@@ -1,6 +1,6 @@
.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 }}
+ span.font-medium.text-base(v-for="hour in hoursArray" :key="hour" :class="currentHourStyle(hour)") {{ hour }}
diff --git a/tailwind.config.js b/tailwind.config.js
index d32734c..162cc69 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -23,6 +23,9 @@ module.exports = {
gap: {
43: "43px",
},
+ spacing: {
+ 6: "6px",
+ },
},
},
plugins: [],