fix: feed form max width of markdown container

Signed-off-by: Innei <i@innei.in>
This commit is contained in:
Innei 2024-10-24 20:46:20 +08:00
parent d06da26678
commit 99478f1d99
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
1 changed files with 4 additions and 7 deletions

View File

@ -8,7 +8,6 @@ import {
SelectTrigger,
SelectValue,
} from "@follow/components/ui/select/index.jsx"
import { EllipsisHorizontalTextWithTooltip } from "@follow/components/ui/typography/index.js"
import type { FeedViewType } from "@follow/constants"
import { nextFrame } from "@follow/utils/dom"
import { cn } from "@follow/utils/utils"
@ -296,7 +295,7 @@ export const DiscoverFeedForm = ({
/>
)}
{!!parameters && (
<Markdown className="text-xs text-theme-foreground/50">
<Markdown className="w-full max-w-full text-xs text-theme-foreground/50">
{parameters.description}
</Markdown>
)}
@ -313,11 +312,9 @@ export const DiscoverFeedForm = ({
placeholder={value.default}
/>
{!!value.description && (
<EllipsisHorizontalTextWithTooltip>
<Markdown className="text-xs text-theme-foreground/50">
{value.description}
</Markdown>
</EllipsisHorizontalTextWithTooltip>
<Markdown className="w-full max-w-full text-xs text-theme-foreground/5">
{value.description}
</Markdown>
)}
</FormItem>
))}