Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Zewed committed Jan 28, 2024
1 parent 1128d36 commit 7617be9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
display: flex;
flex-direction: column;
padding-right: Spacings.$spacing05;
width: 85%;
padding-block: Spacings.$spacing03;

.message_row_content {
align-self: flex-end;
border-radius: 12px;
width: fit-content;
padding-block: Spacings.$spacing03;
Expand Down Expand Up @@ -53,7 +56,7 @@

.message_row_content {
align-self: flex-start;
background-color: rgba(Colors.$black, 0.85);
background-color: rgba(Colors.$black, 0.8);
margin-left: 1px;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
display: flex;
align-items: center;
gap: Spacings.$spacing02;
color: Colors.$primary;
color: Colors.$black;
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const QuestionBrain = ({

return (
<div data-testid="brain-tags" className={styles.brain_name_wrapper}>
<Icon name="brain" color="primary" size="normal" />
<Icon name="brain" color="black" size="normal" />
<span>{brainName}</span>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
.prompt_name_wrapper {
display: flex;
align-items: center;
color: Colors.$primary;
color: Colors.$black;
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const QuestionPrompt = ({

return (
<div data-testid="prompt-tags" className={styles.prompt_name_wrapper}>
<Icon name="hastag" color="primary" size="normal" />
<Icon name="hastag" color="black" size="normal" />
<span>{promptName}</span>
</div>
);
Expand Down

0 comments on commit 7617be9

Please sign in to comment.