(minor) quote overflow (#2862)

* k

* k
This commit is contained in:
pablodanswer 2024-10-20 16:31:18 -07:00 committed by GitHub
parent dd2551040f
commit 7ab0063dc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ const QuoteDisplay = ({ quoteInfo }: { quoteInfo: Quote }) => {
>
{detailIsOpen && (
<div className="absolute top-0 mt-9 pt-2 z-50">
<div className="flex flex-shrink-0 rounded-lg w-96 bg-background border border-border shadow p-3 text-sm leading-relaxed">
<div className="flex flex-shrink-0 rounded-lg break-words hyphens-auto w-96 bg-background border border-border shadow p-3 text-sm leading-relaxed overflow-hidden">
<div>
<b>Quote:</b> <i>{quoteInfo.quote}</i>
</div>