webui/src/pages/bug/Bug.tsx 🔗
@@ -59,6 +59,7 @@ const useStyles = makeStyles((theme) => ({
...theme.typography.body2,
},
commentForm: {
+ marginTop: theme.spacing(2),
marginLeft: 48,
},
}));
Sascha created
webui/src/pages/bug/Bug.tsx | 1 +
webui/src/pages/bug/CommentForm.tsx | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
@@ -59,6 +59,7 @@ const useStyles = makeStyles((theme) => ({
...theme.typography.body2,
},
commentForm: {
+ marginTop: theme.spacing(2),
marginLeft: 48,
},
}));
@@ -15,7 +15,6 @@ import { TimelineDocument } from './TimelineQuery.generated';
type StyleProps = { loading: boolean };
const useStyles = makeStyles<Theme, StyleProps>((theme) => ({
container: {
- margin: theme.spacing(2, 0),
padding: theme.spacing(0, 2, 2, 2),
},
textarea: {},