Skip to content

Commit

Permalink
#1389 adjusted side proportions
Browse files Browse the repository at this point in the history
  • Loading branch information
matej-vavrek committed Apr 16, 2024
1 parent 0554cfe commit e8095a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/components/preview/tags/modal/editTagsModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ export const EditTagsModal = ({ open, anchorEl, setOpenDialog }) => {
};

const leftSide = text => {
return <Grid item xs={4} className={classes.leftSide}>
return <Grid item xs={3} className={classes.leftSide}>
<InputLabel>{text}</InputLabel>
</Grid>;
};

const rightSide = child => {
return <Grid item xs={8}>
return <Grid item xs={9}>
{child}
</Grid>;
};
Expand Down

0 comments on commit e8095a5

Please sign in to comment.