Skip to content

Commit

Permalink
Merge pull request #40 from ryanleung/ryanleung-nits
Browse files Browse the repository at this point in the history
  • Loading branch information
betterbrand authored Mar 2, 2024
2 parents d9a0d3a + bd5eb51 commit 5d9514f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/frontend/components/layout/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Main = {
MainWrapper: Styled.div`
display: flex;
width: 80%;
height: 70%;
max-width: 850px;
flex-grow: 1;
border-radius: 30px;
border: 5px solid ${(props) => props.theme.colors.hunter};
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/views/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,10 @@ const Chat = {
margin-bottom: 20px;
`,
Question: Styled.span`
display: flex;
color: ${(props) => props.theme.colors.notice};
font-family: ${(props) => props.theme.fonts.family.primary.regular};
font-size: ${(props) => props.theme.fonts.size.small};
word-wrap: break-word;
margin-bottom: 5px;
`,
Answer: Styled.span`
Expand Down Expand Up @@ -348,7 +348,7 @@ const Chat = {
width: 100%;
height: 40px;
border-radius: 30px;
padding: 0 25px;
padding: 0 40px 0 25px;
background: ${(props) => props.theme.colors.core};
border: 2px solid ${(props) => props.theme.colors.hunter};
color: ${(props) => props.theme.colors.notice};
Expand Down

0 comments on commit 5d9514f

Please sign in to comment.