From c344a89ba2a0eba76641d859c5d5ac68f570ff94 Mon Sep 17 00:00:00 2001 From: Ian Jones Date: Wed, 27 Sep 2023 20:18:52 +0100 Subject: [PATCH] feat: Update column width --- editor.planx.uk/src/@planx/components/Section/Public.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor.planx.uk/src/@planx/components/Section/Public.tsx b/editor.planx.uk/src/@planx/components/Section/Public.tsx index 6f8c8192f9..41fc5b29ee 100644 --- a/editor.planx.uk/src/@planx/components/Section/Public.tsx +++ b/editor.planx.uk/src/@planx/components/Section/Public.tsx @@ -228,7 +228,7 @@ const SectionRow = styled(Box)(({ theme }) => ({ const SectionWrap = styled(Box)(({ theme }) => ({ [theme.breakpoints.up("md")]: { flexShrink: 1, - flexBasis: `calc(100% - 260px)`, + flexBasis: `calc(100% - 230px)`, }, })); @@ -253,7 +253,7 @@ const SectionState = styled("dd")(({ theme }) => ({ [theme.breakpoints.up("md")]: { display: "flex", flexShrink: 0, - flexBasis: "260px", + flexBasis: "230px", justifyContent: "flex-end", alignItems: "flex-start", },