Skip to content

Commit

Permalink
fix: add padding to script to avoid being hidden by bottom toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
apostolos committed Nov 10, 2023
1 parent 4598479 commit 011cb8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions client/routes/customize/BuildScript.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ const ScriptLogo = styled('img', {
const Pre = styled('pre', {
maxWidth: 'calc(100vw - 3.6rem)',
overflow: 'auto',
padding: '$gutter',
// padding: '$gutter',
paddingTop: '1rem',
paddingBottom: '5.5rem',
backgroundColor: '$caution50',
border: '1px solid $gray700',
fontSize: '$sm',
Expand Down Expand Up @@ -107,7 +109,7 @@ const selector = createSelectorDeepEqual(
selectedAddons,
} as ScriptState;
},
(data) => data
(data) => data,
);

export function BuildScript({ configDownload, configLoad }: Props) {
Expand Down

0 comments on commit 011cb8c

Please sign in to comment.