Touch up reply buttons

This commit is contained in:
Ian Philips 2022-05-12 10:27:25 -06:00
parent aafc08f24c
commit c2f8aee89e

View File

@ -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 ?? []}