We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4673bc5 commit e92516aCopy full SHA for e92516a
src/components/popout/info.tsx
@@ -23,8 +23,12 @@ type InfoProps = {
23
const InfoList = ({ title, children }: Information) => {
24
return (
25
<div className="grid-cols-1 sm:gap-0 gap-1 sm:grid-cols-2 items-center min-w-auto grid w-full">
26
- <p className="flex justify-start font-medium">{title}</p>
27
- <p className="flex justify-start sm:justify-end truncate">{children}</p>
+ <p className="flex justify-start font-medium max-w-xs">{title}</p>
+ <p className="flex justify-start sm:justify-end truncate overflow-hidden">
28
+ <span className="inline-block overflow-hidden overflow-ellipsis">
29
+ {children}
30
+ </span>
31
+ </p>
32
</div>
33
)
34
}
0 commit comments