diff --git a/src/pages/Worker/Card/WorkerCalendarItem.vue b/src/pages/Worker/Card/WorkerCalendarItem.vue index 0a89b131d..c63a775c3 100644 --- a/src/pages/Worker/Card/WorkerCalendarItem.vue +++ b/src/pages/Worker/Card/WorkerCalendarItem.vue @@ -153,10 +153,7 @@ const getEventAttrs = (timestamp) => { const attrs = { title: name, - style: - color && type !== 'holiday' - ? `background-color: ${color};` - : 'background-color:#3d3d3d;', + style: color ? `background-color: ${color};` : ``, label: timestamp.day, }; @@ -247,12 +244,11 @@ watch(_year, (newValue) => { &.--festive { color: $negative; - border: 2px solid $negative; } &.--holiday { & > span:nth-child(2) .block { - color: $negative; + color: white; } }