fix chevron text color
This commit is contained in:
parent
062b92be29
commit
56ad417fee
1 changed files with 2 additions and 2 deletions
|
@ -171,10 +171,10 @@ const DatePicker = ({
|
||||||
<span className="w-1/2 text-gray-600 dark:text-white">
|
<span className="w-1/2 text-gray-600 dark:text-white">
|
||||||
{dayjs().month(selectedMonth).format("MMMM YYYY")}
|
{dayjs().month(selectedMonth).format("MMMM YYYY")}
|
||||||
</span>
|
</span>
|
||||||
<div className="w-1/2 text-right">
|
<div className="w-1/2 text-right text-gray-400">
|
||||||
<button
|
<button
|
||||||
onClick={decrementMonth}
|
onClick={decrementMonth}
|
||||||
className={"mr-4 " + (selectedMonth <= dayjs().tz(inviteeTimeZone).month() && "text-gray-400")}
|
className={"mr-4 " + (selectedMonth <= dayjs().tz(inviteeTimeZone).month() && "text-gray-600")}
|
||||||
disabled={selectedMonth <= dayjs().tz(inviteeTimeZone).month()}>
|
disabled={selectedMonth <= dayjs().tz(inviteeTimeZone).month()}>
|
||||||
<ChevronLeftIcon className="w-5 h-5" />
|
<ChevronLeftIcon className="w-5 h-5" />
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Reference in a new issue