fix: allow text selection and copy

This was conflicting with the left and right tap areas for navigating a
stream.
This commit is contained in:
talksik
2026-03-25 15:56:48 -07:00
parent 739bb0cf80
commit 60daec38ff
2 changed files with 8 additions and 4 deletions
@@ -98,7 +98,7 @@ export function TextParticleView({
<div className="flex h-full w-full flex-col items-center justify-center bg-gradient-to-b from-black/40 via-black/20 to-black/40 p-8">
<p
className={cn(
"max-w-2xl break-words text-center leading-relaxed text-white",
"max-w-2xl break-words text-center leading-relaxed text-white select-text cursor-text",
style.size,
style.weight,
)}
@@ -113,7 +113,7 @@ export function TextParticleView({
<div className="flex h-full w-full items-center justify-center bg-gradient-to-b from-black/40 via-black/20 to-black/40 p-8">
<div className="flex max-h-full w-full items-center gap-6">
<div className="flex-1 overflow-y-auto rounded-2xl max-w-lg mx-auto bg-white/10 p-5 backdrop-blur-md">
<p className="break-words text-base leading-relaxed text-white">
<p className="break-words text-base leading-relaxed text-white select-text cursor-text">
{content}
</p>
</div>