fix: use brand accent instead of invert on current day selector (#13194)

* fix: use brand accent instead of invert

* fix: use brand accent instead of invert

* chore: remove constants from commit
This commit is contained in:
sean-brydon 2024-01-13 02:44:26 +13:00 committed by GitHub
parent 782127a993
commit d8ba783369
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ export const Day = ({
<span
className={classNames(
"bg-brand-default absolute left-1/2 top-1/2 flex h-[5px] w-[5px] -translate-x-1/2 translate-y-[8px] items-center justify-center rounded-full align-middle sm:translate-y-[12px]",
active && "invert"
active && "bg-brand-accent"
)}>
<span className="sr-only">{t("today")}</span>
</span>