💄(react) update DatePicker error color

The QA reported that the colors were not correct.
This commit is contained in:
Nathan Vasse
2023-09-05 10:49:37 +02:00
committed by NathanVss
parent 37772a4b85
commit 94f392e037
2 changed files with 11 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
"@openfun/cunningham-react": minor
---
update DatePicker error color

View File

@@ -141,9 +141,13 @@
&:not(.c__date-picker--disabled) {
&:hover {
.c__date-picker__wrapper {
border-color: var(--c--theme--colors--danger-200);
border-color: var(--c--theme--colors--danger-800);
&__toggle {
color: var(--c--theme--colors--danger-200);
color: var(--c--theme--colors--danger-800);
}
label {
color: var(--c--theme--colors--danger-800);
}
}
}