tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
fix hover styles for quotes in InteractionPreview
schlage.town
2 months ago
81bdafb6
fd9b8470
+3
-3
1 changed file
expand all
collapse all
unified
split
components
InteractionsPreview.tsx
+3
-3
components/InteractionsPreview.tsx
···
40
40
<SpeedyLink
41
41
aria-label="Post quotes"
42
42
href={`${props.postUrl}?interactionDrawer=quotes`}
43
43
-
className="flex flex-row gap-1 text-sm items-center text-accent-contrast!"
43
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
52
-
className="relative flex flex-row gap-1 text-sm items-center hover:text-accent-contrast hover:no-underline! text-tertiary"
52
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
96
-
<div className="relative flex gap-1 items-center hover:text-accent-contrast ">
96
96
+
<div className="relative flex gap-1 items-center hover:text-accent-contrast">
97
97
<TagTiny /> {props.tags.length}
98
98
</div>
99
99
}