forked from verdnatura/salix-front
Change saturday and sunday days color
This commit is contained in:
parent
c573019038
commit
faa8d05313
|
@ -223,6 +223,7 @@ watch(_year, (newValue) => {
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
:root {
|
:root {
|
||||||
|
// Cambia los colores del día actual del calendario por los de salix
|
||||||
--calendar-border-current-dark: #84d0e2 2px solid;
|
--calendar-border-current-dark: #84d0e2 2px solid;
|
||||||
--calendar-border-current: #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 {
|
.q-calendar-month__week--wrapper {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue