Use white color for calendar buttons in release date input

This commit is contained in:
Franco Montenegro 2021-03-01 14:28:05 -03:00
parent d37c284b06
commit a84f408f8e

View file

@ -484,7 +484,15 @@ fieldset-section {
.react-datetime-picker__button { .react-datetime-picker__button {
svg { svg {
stroke: var(--color-gray-5); stroke: var(--color-black);
}
}
[theme='dark'] {
.react-datetime-picker__button {
svg {
stroke: var(--color-white);
}
} }
} }