a tool for shared writing and social publishing

fix hover styles for quotes in InteractionPreview

+3 -3
+3 -3
components/InteractionsPreview.tsx
··· 40 40 <SpeedyLink 41 41 aria-label="Post quotes" 42 42 href={`${props.postUrl}?interactionDrawer=quotes`} 43 - className="flex flex-row gap-1 text-sm items-center text-accent-contrast!" 43 + className="relative flex flex-row gap-1 text-sm items-center hover:text-accent-contrast hover:no-underline! text-tertiary" 44 44 > 45 45 <QuoteTiny /> {props.quotesCount} 46 46 </SpeedyLink> ··· 49 49 <SpeedyLink 50 50 aria-label="Post comments" 51 51 href={`${props.postUrl}?interactionDrawer=comments`} 52 - className="relative flex flex-row gap-1 text-sm items-center hover:text-accent-contrast hover:no-underline! text-tertiary" 52 + className="relative flex flex-row gap-1 text-sm items-center hover:text-accent-contrast hover:no-underline! text-tertiary" 53 53 > 54 54 <CommentTiny /> {props.commentsCount} 55 55 </SpeedyLink> ··· 93 93 <Popover 94 94 className="p-2! max-w-xs" 95 95 trigger={ 96 - <div className="relative flex gap-1 items-center hover:text-accent-contrast "> 96 + <div className="relative flex gap-1 items-center hover:text-accent-contrast"> 97 97 <TagTiny /> {props.tags.length} 98 98 </div> 99 99 }