Skip to content

Commit bcfb65c

Browse files
committed
fix(init): remove left/right padding from main content wrapper
The paddingX={1} on the outer content box was shifting the banner and all content inward by 1 column on each side.
1 parent 9be7c49 commit bcfb65c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/init/ui/ink-app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export function App({ store }: AppProps): React.ReactNode {
174174

175175
const inner = (
176176
<Box flexDirection="column" height={rows} width={width}>
177-
<Box flexDirection="column" flexGrow={1} paddingTop={1} paddingX={1}>
177+
<Box flexDirection="column" flexGrow={1} paddingTop={1}>
178178
<Box flexDirection="column" height={contentHeight}>
179179
<Box
180180
flexDirection="column"

0 commit comments

Comments
 (0)