diff --git a/editor.planx.uk/src/@planx/components/FindProperty/Public/index.tsx b/editor.planx.uk/src/@planx/components/FindProperty/Public/index.tsx index 41da7e874c..cf755932d6 100644 --- a/editor.planx.uk/src/@planx/components/FindProperty/Public/index.tsx +++ b/editor.planx.uk/src/@planx/components/FindProperty/Public/index.tsx @@ -44,10 +44,13 @@ const AddressLoadingWrap = styled(Box)(({ theme }) => ({ minHeight: theme.spacing(3), pointerEvents: "none", [theme.breakpoints.up("md")]: { - position: "absolute", - bottom: theme.spacing(1), + position: "relative", margin: 0, + height: 0, + minHeight: 0, "& > div": { + position: "absolute", + top: theme.spacing(5.5), justifyContent: "flex-start", paddingLeft: theme.spacing(16), }, diff --git a/editor.planx.uk/src/components/DelayedLoadingIndicator.tsx b/editor.planx.uk/src/components/DelayedLoadingIndicator.tsx index a14ffca721..22074a899b 100644 --- a/editor.planx.uk/src/components/DelayedLoadingIndicator.tsx +++ b/editor.planx.uk/src/components/DelayedLoadingIndicator.tsx @@ -10,7 +10,7 @@ export interface Props { const Root = styled(Box, { shouldForwardProp: (prop) => prop !== "inline", -})(({ inline, theme }) => ({ +})(({ inline }) => ({ padding: 60, display: "flex", alignItems: "center",