Skip to content

Commit

Permalink
fix(padding-setting): adjust padding on ai-chat box
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtabBukhari committed Aug 14, 2024
1 parent ba7970b commit eb75a90
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 eb75a90

Please sign in to comment.