Skip to content

Commit

Permalink
refactor(AIReplySection): use Box prop instead
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz committed Jan 26, 2025
1 parent 473583a commit 32ab693
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/AIReplySection.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const langfuseWeb = new LangfuseWeb({
const useStyles = makeStyles(theme => ({
vote: {
borderRadius: 45,
marginTop: 16,
marginRight: 3,
[theme.breakpoints.up('md')]: {
marginRight: 10,
Expand Down Expand Up @@ -76,7 +75,7 @@ function AIReplySection({
<div style={{ whiteSpace: 'pre-line', marginTop: 16 }}>
{aiReplyText}
</div>
<Box display="flex" justifyContent="space-between">
<Box display="flex" justifyContent="space-between" mt={2}>
<Box display="flex">
<Button
size="small"
Expand Down

0 comments on commit 32ab693

Please sign in to comment.