0
0
Fork 0

Change saturday and sunday days color

This commit is contained in:
William Buezas 2024-04-09 14:48:51 -03:00
parent c573019038
commit faa8d05313
1 changed files with 7 additions and 0 deletions

View File

@ -223,6 +223,7 @@ watch(_year, (newValue) => {
<style lang="scss">
:root {
// Cambia los colores del día actual del calendario por los de salix
--calendar-border-current-dark: #84d0e2 2px solid;
--calendar-border-current: #84d0e2 2px solid;
}
@ -238,6 +239,12 @@ watch(_year, (newValue) => {
}
}
.q-calendar-month__week--days > div:nth-child(6),
.q-calendar-month__week--days > div:nth-child(7) {
// Cambia el color de los días sábado y domingo
color: #777777;
}
.q-calendar-month__week--wrapper {
margin-bottom: 4px;
}