Skip to content

Commit

Permalink
Merge pull request #2045 from MahtabBukhari/adjust_padding_in_ai_chat…
Browse files Browse the repository at this point in the history
…_box

 Adjust padding on AI chat box
  • Loading branch information
Rassl authored Aug 14, 2024
2 parents 0d0593f + eb75a90 commit 3728c82
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/components/App/UniverseQuestion/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const StyledTextarea = styled(TextareaAutosize).attrs({
max-width: 700px;
width: 700px;
color: ${colors.white};
padding: 15px;
padding: 0 16px 0 16px;
overflow-y: auto !important;
border: none;
resize: none;
Expand Down Expand Up @@ -195,22 +195,21 @@ const Wrapper = styled(Flex)`
const StyledButton = styled(Button)`
&& {
position: absolute;
bottom: 12px;
right: 14px;
bottom: 16px;
right: 16px;
height: 32px;
border-radius: 16px;
min-width: 32px;
padding: 2px;
}
&&.MuiButton-root {
padding: 10px;
padding: 0 10px 0 12px;
}
svg {
margin-top: 1px;
width: 12px;
height: 12px;
width: 11px;
height: 11px;
}
`

Expand Down

0 comments on commit 3728c82

Please sign in to comment.