Skip to content

Commit

Permalink
works
Browse files Browse the repository at this point in the history
  • Loading branch information
Zewed committed Jan 28, 2024
1 parent 04d3b23 commit 98d9c7b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ export const ChatInput = (): JSX.Element => {
size="large"
color="accent"
disabled={!message}
handleHover={true}
onClick={handleSubmitQuestion}
/>
)}
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

.message_row_content {
align-self: flex-start;
background-color: rgba(Colors.$black, 0.8);
background-color: Colors.$light-black;
margin-left: 1px;
}
}
Expand Down
5 changes: 5 additions & 0 deletions frontend/lib/components/ui/Icon/Icon.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,10 @@

.disabled {
color: Colors.$black;
pointer-events: none;
opacity: 0.2;
}

.hovered {
cursor: pointer;
}
1 change: 1 addition & 0 deletions frontend/styles/_Colors.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ $lightest-grey: #f5f5f5;
$light-grey: #d3d3d3;
$normal-grey: #c8c8c8;
$dark-grey: #707070;
$light-black: #415065;
$black: #11243e;
$dark-black: #081621;
$primary: #6142d4;
Expand Down

0 comments on commit 98d9c7b

Please sign in to comment.