Skip to content

Commit

Permalink
fix: update styles from scroll and avatar
Browse files Browse the repository at this point in the history
  • Loading branch information
Emerson-Valentim committed Jun 17, 2022
1 parent 96c0104 commit e097c26
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/pages/Room/components/Chat/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ const Messages = styled(Box)`
overflow: scroll;
padding: 0 1em 0 1em;
&::-webkit-slider-thumb {
-webkit-appearance: none;
width: 10px;
height: 10px;
border: 1px solid black;
}
`;

const ChatMessage = styled(Text)<{ color: string; isOwner: boolean }>`
Expand Down
4 changes: 4 additions & 0 deletions src/pages/Room/components/UserInfo/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ const Container = styled.div`
width: fit-content;
border-radius: 10px;
img {
height: 250px;
}
`;

const Title = styled.p`
Expand Down

0 comments on commit e097c26

Please sign in to comment.