diff --git a/editor.planx.uk/src/pages/FlowEditor/components/Settings/DesignSettings/index.tsx b/editor.planx.uk/src/pages/FlowEditor/components/Settings/DesignSettings/index.tsx
index 4432b3d39c..8c3bd88565 100644
--- a/editor.planx.uk/src/pages/FlowEditor/components/Settings/DesignSettings/index.tsx
+++ b/editor.planx.uk/src/pages/FlowEditor/components/Settings/DesignSettings/index.tsx
@@ -22,6 +22,8 @@ export const DesignPreview = styled(Box)(({ theme }) => ({
border: `2px solid ${theme.palette.border.input}`,
padding: theme.spacing(2),
boxShadow: "4px 4px 0px rgba(150, 150, 150, 0.5)",
+ display: "flex",
+ justifyContent: "center",
}));
export const EXAMPLE_COLOUR = "#007078";
diff --git a/editor.planx.uk/src/ui/editor/ImgInput.tsx b/editor.planx.uk/src/ui/editor/ImgInput.tsx
index 6134c3b829..90d3216d9c 100644
--- a/editor.planx.uk/src/ui/editor/ImgInput.tsx
+++ b/editor.planx.uk/src/ui/editor/ImgInput.tsx
@@ -27,6 +27,14 @@ const StyledIconButton = styled(IconButton)(({ theme }) => ({
marginLeft: theme.spacing(0.5),
}));
+const ImageWrapper = styled(Box)(() => ({
+ width: 50,
+ height: 50,
+ display: "flex",
+ justifyContent: "center",
+ alignItems: "center",
+}));
+
/** Uploads an image and returns corresponding URL */
export default function ImgInput({
img,
@@ -86,13 +94,15 @@ export default function ImgInput({
Remove
-
+
+
+
) : (