Skip to content

Commit

Permalink
Correct rendering of icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Eroxl committed Jan 21, 2023
1 parent 7987683 commit d333f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/blocks/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Icon = (props: IconProps) => {
}, [emojiPickerMenuRef]);

return (
<div className="relative w-min h-min" ref={emojiPickerMenuRef}>
<div className="relative w-min h-min" ref={emojiPickerMenuRef} key={page}>
<span className="flex items-center justify-center w-20 h-20 rounded select-none print:w-40 print:justify-start hover:bg-slate-600/5 hover:dark:bg-amber-50/5">
<button className="select-none text-7xl w-min h-min" type="button" onClick={() => { setIsEmojiSelectorActive(!isEmojiSelectorActive); }}>
{currentIcon}
Expand Down

0 comments on commit d333f79

Please sign in to comment.