diff --git a/src/pages/calendar/components/CalendarColumn.vue b/src/pages/calendar/components/CalendarColumn.vue index 120697a..ac8648a 100644 --- a/src/pages/calendar/components/CalendarColumn.vue +++ b/src/pages/calendar/components/CalendarColumn.vue @@ -6,7 +6,7 @@ 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 - .flex.flex-col + .body.flex.flex-col span.block.time-indicator(v-if="isShownIndicator" :style="indicatorLocation") .line.flex.items-center(v-for="hour in hoursArray" :key="hour") .middle-line @@ -44,8 +44,8 @@ export default { let newTime = this.currentTime .split(":") .map((elem) => parseInt(elem, 10)); - let result = (newTime[0] - 7) * 60.5 + newTime[1]; - if (result > 666) { + let result = (newTime[0] - 8) * 62 + newTime[1] * 1.03; + if (result > 620) { this.isShownIndicator = false; return 0; } @@ -58,11 +58,12 @@ export default {