From 5db97ebd0c70cb78b7a1d8eeba7ed82e08d0301c Mon Sep 17 00:00:00 2001 From: Kamil Niemczycki Date: Fri, 8 Jul 2022 14:08:28 +0200 Subject: [PATCH] - modified calendar --- .../Shared/Widgets/Calendar/DayComponent.vue | 4 ++-- .../js/Shared/Widgets/VacationCalendar.vue | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/js/Shared/Widgets/Calendar/DayComponent.vue b/resources/js/Shared/Widgets/Calendar/DayComponent.vue index ec1c8c1..3cd8245 100644 --- a/resources/js/Shared/Widgets/Calendar/DayComponent.vue +++ b/resources/js/Shared/Widgets/Calendar/DayComponent.vue @@ -13,8 +13,8 @@ } ], day.isHoliday && 'font-bold cursor-default', - (day.isPendingVacation) && `border-b-4 border-dashed ${day.getVacationType.border}`, - (day.isVacation) && `border-b-4 ${day.getVacationType.border}` + (day.isPendingVacation) && `pb-0 border-b-[3px] border-dashed ${day.getVacationType.border}`, + (day.isVacation) && `pb-0 border-b-[3px] ${day.getVacationType.border}` ]" >
- Pn + Pon
Wt @@ -106,16 +106,16 @@ Śr
- Cz + Czw
Pt
- Sb + Sob
- Nd + Ndz
@@ -127,7 +127,7 @@ v-for="(day, index) in days" :key="index" :day="day" - class="flex flex-col relative py-2 px-3" + class="flex flex-col relative py-3 px-3" :class="{ 'day': calendarState.viewMode.isWeek }" />
@@ -378,7 +378,7 @@ function getVacationInfo(day) {