diff --git a/src/assets/sass/variables.sass b/src/assets/sass/variables.sass index e013c00..cee65c9 100644 --- a/src/assets/sass/variables.sass +++ b/src/assets/sass/variables.sass @@ -17,6 +17,7 @@ --btn-blue-color-2: rgba(65, 105, 225, 0.5) --btn-blue-color-3: rgba(65, 105, 225, 0.2) --btn-blue-color-4: rgba(65, 105, 225, 0.8) + --btn-blue-color-5: rgba(65, 105, 225, 0.4) --bg-btn-icons-color: rgba(215, 217, 255, 0.6) --font-grey-color: #9294a7 --font-grey-color-0: #85858b diff --git a/src/components/base/BaseCalendar.vue b/src/components/base/BaseCalendar.vue index c9c10ef..f8bbfff 100644 --- a/src/components/base/BaseCalendar.vue +++ b/src/components/base/BaseCalendar.vue @@ -24,12 +24,15 @@ .week.py-4.px-5.grid.grid-rows-1.grid-cols-7 .flex.items-center.justify-center.week-item.text-xsx.py-1(v-for="day of week", :key="day") {{ day }} .body.pb-5.px-5 - .flex.items-center.justify-center.rounded-full.cursor-pointer.w-full.h-full( + .flex.items-center.justify-center.cursor-pointer.w-full.h-full( v-for="date of internalDatesList", - :class="calculateInternalMonth(date)", @click="selectDate(date)", :key="date", - ) {{ date.format("D") }} + :style="calculateRangeStyle(date)" + ) + .flex.items-center.justify-center.rounded-full.w-full.h-full( + :class="calculateCellClasses(date)", + ) {{ date.format("D") }}