Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
commenting remove blue colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvicenti committed Jan 10, 2024
1 parent 244a429 commit a845b0c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 0 additions & 3 deletions frontend/packages/app/components/comments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@ export function EntityCommentsAccessory({
const createComment = trpc.comments.createCommentDraft.useMutation()
return (
<AccessoryContainer
backgroundColor={'$blue2'}
theme="blue"
title="Comments"
footer={
<YStack padding="$4" borderTopWidth={1} borderColor="$borderColor">
Expand Down Expand Up @@ -306,7 +304,6 @@ export function CommentPageTitlebar({
height={40}
borderBottomWidth={1}
borderColor="$borderColor"
backgroundColor={'$blue2'}
ai="center"
jc="center"
paddingHorizontal="$2"
Expand Down
3 changes: 1 addition & 2 deletions frontend/packages/app/pages/comment-draft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ function CommitBar({
return (
<XStack
ai="center"
backgroundColor={'$blue2'}
padding="$4"
paddingHorizontal="$5"
theme="blue"
Expand Down Expand Up @@ -138,7 +137,7 @@ export default function CommentDraftPage() {
return (
<>
<CommentPageTitlebarWithDocId targetDocIdStream={targetDocId} />
<MainWrapperStandalone backgroundColor={'$blue2'} theme="blue">
<MainWrapperStandalone>
<YStack minHeight={'100vh'}>
<TargetComment
targetCommentId={targetCommentId}
Expand Down
2 changes: 1 addition & 1 deletion frontend/packages/app/pages/comment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default function CommentPage() {
return (
<>
<CommentPageTitlebarWithDocId targetDocId={targetDocId?.qid} />
<MainWrapperStandalone backgroundColor={'$blue2'} theme="blue">
<MainWrapperStandalone>
{comment.isLoading ? <Spinner /> : null}
{route.showThread && targetDocId && comment.data?.repliedComment ? (
<CommentThread
Expand Down

0 comments on commit a845b0c

Please sign in to comment.