0
0
Fork 0
This commit is contained in:
Javier Segarra 2024-05-22 09:27:48 +02:00
parent a0ca26ad9b
commit eaa0288f25
1 changed files with 3 additions and 6 deletions

View File

@ -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,12 @@ watch(_year, (newValue) => {
&.--festive {
color: $negative;
border: 2px solid $negative;
// border: 2px solid $negative;
}
&.--holiday {
& > span:nth-child(2) .block {
color: $negative;
color: white;
}
}