pl-fe: improve reactions styles
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
cfe5b8820a
commit
77509b9931
2 changed files with 3 additions and 3 deletions
|
@ -72,7 +72,7 @@ const StatusReaction: React.FC<IStatusReaction> = ({ reaction, status, obfuscate
|
|||
|
||||
return (
|
||||
<button
|
||||
className={clsx('group flex cursor-pointer items-center gap-2 overflow-hidden rounded-md border border-gray-400 p-1.5 transition-colors', {
|
||||
className={clsx('group flex cursor-pointer items-center gap-2 overflow-hidden rounded-md border border-gray-400 px-1.5 py-1 transition-colors', {
|
||||
'bg-primary-100 dark:border-primary-400 dark:bg-primary-400 black:border-primary-600 black:bg-primary-600': reaction.me,
|
||||
'bg-transparent dark:border-primary-700 dark:bg-primary-700 black:border-primary-800 black:bg-primary-800': !reaction.me,
|
||||
'cursor-pointer': !unauthenticated,
|
||||
|
@ -88,7 +88,7 @@ const StatusReaction: React.FC<IStatusReaction> = ({ reaction, status, obfuscate
|
|||
disabled={unauthenticated}
|
||||
{...bind}
|
||||
>
|
||||
<Emoji className='h-4 w-4' emoji={reaction.name} src={reaction.url || undefined} />
|
||||
<Emoji className='h-5 w-5' emoji={reaction.name} src={reaction.url || undefined} />
|
||||
|
||||
<Text size='xs' weight='semibold' theme='inherit'>
|
||||
<AnimatedNumber value={reaction.count} obfuscate={obfuscate} short />
|
||||
|
|
|
@ -34,7 +34,7 @@ const StillImage: React.FC<IStillImage> = ({
|
|||
const img = useRef<HTMLImageElement>(null);
|
||||
|
||||
const hoverToPlay = (
|
||||
src && !autoPlayGif && (isGif || src.endsWith('.gif') || src.startsWith('blob:'))
|
||||
src && !autoPlayGif && ((isGif && !src.endsWith('.png')) || src.endsWith('.gif') || src.startsWith('blob:'))
|
||||
);
|
||||
|
||||
const handleImageLoad = () => {
|
||||
|
|
Loading…
Reference in a new issue