Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: added orange hearts #2139

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ const ContributorHighlightCard = ({
href={highlightLink}
target="_blank"
rel="noreferrer"
className="inline-block flex-1 underline text-sauced-orange truncate cursor-pointer"
className="flex-1 inline-block underline truncate cursor-pointer text-sauced-orange"
>
{highlightLink}
</a>
Expand All @@ -632,7 +632,7 @@ const ContributorHighlightCard = ({
<DropdownMenuItem
onClick={async () => (sessionToken ? handleUpdateReaction(id) : signIn({ provider: "github" }))}
key={id}
className="rounded-full !px-2 !cursor-pointer"
className="rounded-full !px-2 !cursor-pointer text-orange-500"
>
<Emoji text={`:${name}:`} />
</DropdownMenuItem>
Expand All @@ -655,7 +655,7 @@ const ContributorHighlightCard = ({
onClick={async () => (sessionToken ? handleUpdateReaction(emoji_id) : signIn({ provider: "github" }))}
>
<Emoji
className="text-xs md:text-sm text-light-slate-10"
className="text-xs text-orange-500 md:text-sm"
text={`:${getEmojiNameById(emoji_id)}: ${reaction_count}`}
/>
</div>
Expand Down
Loading