Skip to content
Snippets Groups Projects
Unverified Commit af54d2ea authored by Dalton's avatar Dalton Committed by GitHub
Browse files

increase font weight on selected AM/PM in filter (#20029)

parent bcb77714
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ const HoursMinutesInput = ({
<div className="flex align-center pl1">
<span
className={cx("text-purple-hover mr1", {
"text-purple": hours < 12,
"text-purple text-heavy": hours < 12,
"cursor-pointer": hours >= 12,
})}
onClick={hours >= 12 ? () => onChangeHours(hours - 12) : null}
......@@ -57,7 +57,7 @@ const HoursMinutesInput = ({
</span>
<span
className={cx("text-purple-hover mr1", {
"text-purple": hours >= 12,
"text-purple text-heavy": hours >= 12,
"cursor-pointer": hours < 12,
})}
onClick={hours < 12 ? () => onChangeHours(hours + 12) : null}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment