Touch up reply buttons
This commit is contained in:
parent
aafc08f24c
commit
c2f8aee89e
|
@ -176,7 +176,7 @@ export function FeedCommentThread(props: {
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
{showReply && (
|
{showReply && (
|
||||||
<div className={' ml-8 w-full pt-6'}>
|
<div className={'ml-8 w-full pt-6'}>
|
||||||
<CommentInput
|
<CommentInput
|
||||||
contract={contract}
|
contract={contract}
|
||||||
// Should we allow replies to contain recent bet info?
|
// Should we allow replies to contain recent bet info?
|
||||||
|
@ -280,9 +280,7 @@ export function FeedComment(props: {
|
||||||
/>
|
/>
|
||||||
{onReplyClick && (
|
{onReplyClick && (
|
||||||
<button
|
<button
|
||||||
className={
|
className={'text-xs font-bold text-gray-500 hover:underline'}
|
||||||
'btn btn-ghost btn-xs text-transform: text-xs capitalize text-gray-500'
|
|
||||||
}
|
|
||||||
onClick={() => onReplyClick(comment)}
|
onClick={() => onReplyClick(comment)}
|
||||||
>
|
>
|
||||||
Reply
|
Reply
|
||||||
|
@ -969,7 +967,7 @@ function FeedAnswerGroup(props: {
|
||||||
<div className={'sm:hidden'}>
|
<div className={'sm:hidden'}>
|
||||||
<button
|
<button
|
||||||
className={
|
className={
|
||||||
'btn btn-ghost btn-xs text-transform: text-xs capitalize text-gray-500'
|
'text-xs font-bold text-gray-500 hover:underline'
|
||||||
}
|
}
|
||||||
onClick={() => setShowReplyAndFocus(true)}
|
onClick={() => setShowReplyAndFocus(true)}
|
||||||
>
|
>
|
||||||
|
@ -1002,9 +1000,7 @@ function FeedAnswerGroup(props: {
|
||||||
{isFreeResponseContractPage && (
|
{isFreeResponseContractPage && (
|
||||||
<div className={'justify-initial hidden sm:block'}>
|
<div className={'justify-initial hidden sm:block'}>
|
||||||
<button
|
<button
|
||||||
className={
|
className={'text-xs font-bold text-gray-500 hover:underline'}
|
||||||
'btn btn-ghost btn-xs text-transform: text-xs capitalize text-gray-500'
|
|
||||||
}
|
|
||||||
onClick={() => setShowReplyAndFocus(true)}
|
onClick={() => setShowReplyAndFocus(true)}
|
||||||
>
|
>
|
||||||
Reply
|
Reply
|
||||||
|
@ -1035,7 +1031,7 @@ function FeedAnswerGroup(props: {
|
||||||
))}
|
))}
|
||||||
|
|
||||||
{showReply && (
|
{showReply && (
|
||||||
<div className={'ml-8'}>
|
<div className={'ml-8 pt-4'}>
|
||||||
<CommentInput
|
<CommentInput
|
||||||
contract={contract}
|
contract={contract}
|
||||||
betsByCurrentUser={betsByCurrentUser ?? []}
|
betsByCurrentUser={betsByCurrentUser ?? []}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user