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
28
pulls
pipelines
make external links a's
awarm.space
5 months ago
baa0d8a7
e7335b55
+3
-3
1 changed file
expand all
collapse all
unified
split
app
reader
ReaderContent.tsx
+3
-3
app/reader/ReaderContent.tsx
···
135
135
hover:outline-accent-contrast hover:border-accent-contrast
136
136
`}
137
137
>
138
138
-
<SpeedyLink
138
138
+
<a
139
139
className="h-full w-full absolute top-0 left-0"
140
140
href={`${props.publication.href}/${postUri.rkey}`}
141
141
/>
···
183
183
uri: string;
184
184
}) => {
185
185
return (
186
186
-
<SpeedyLink
186
186
+
<a
187
187
href={props.href}
188
188
className="text-accent-contrast font-bold no-underline text-sm flex gap-1 items-center md:w-fit w-full relative shrink-0"
189
189
>
190
190
<PubIcon small record={props.pubRecord} uri={props.uri} />
191
191
{props.pubRecord.name}
192
192
-
</SpeedyLink>
192
192
+
</a>
193
193
);
194
194
};
195
195