Visual touchups on FeedAnswerGroups
This commit is contained in:
parent
1bb5d3b8cd
commit
1444d60e11
|
@ -470,7 +470,7 @@ export function FeedQuestion(props: {
|
|||
href={contractPath(contract)}
|
||||
className="relative top-4 self-end text-sm sm:self-start"
|
||||
>
|
||||
<div className="pb-1.5 text-gray-500">See more...</div>
|
||||
<div className="pb-1.5 text-gray-400">See more...</div>
|
||||
</SiteLink>
|
||||
)}
|
||||
</Col>
|
||||
|
@ -682,11 +682,11 @@ function FeedAnswerGroup(props: {
|
|||
items: ActivityItem[]
|
||||
}) {
|
||||
const { answer, items } = props
|
||||
const { username, avatarUrl, userId, name, text } = answer
|
||||
const { username, avatarUrl, name, text } = answer
|
||||
|
||||
return (
|
||||
<Col className="flex-1 gap-2">
|
||||
<Row className="mb-4 gap-3">
|
||||
<Row className="my-4 gap-3">
|
||||
<div className="px-1">
|
||||
<div className="flex h-8 w-8 items-center justify-center rounded-full bg-gray-200">
|
||||
<Avatar username={username} avatarUrl={avatarUrl} />
|
||||
|
@ -696,7 +696,9 @@ function FeedAnswerGroup(props: {
|
|||
<div className="text-sm text-gray-500">
|
||||
<UserLink username={username} name={name} /> answered
|
||||
</div>
|
||||
<Linkify text={text} />
|
||||
<span className="text-lg">
|
||||
<Linkify text={text} />
|
||||
</span>
|
||||
</Col>
|
||||
</Row>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user