Skip to content

Commit 3d4a031

Browse files
InstallScreen design updates (#75)
1 parent 7aaaec0 commit 3d4a031

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.changeset/some-mails-lie.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"bigcommerce-design-patterns": patch
3+
---
4+
5+
InstallScreen design updates

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.tabSize": 2
3+
}

packages/patterns/src/components/InstallScreen/InstallScreen.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
H1,
2323
H2,
2424
Checkbox,
25+
Small,
2526
} from "@bigcommerce/big-design";
2627
import { Page } from "@bigcommerce/big-design-patterns";
2728
import { FeatureTag, FeatureTagProps } from "../featureTag/FeatureTag";
@@ -303,7 +304,7 @@ export const InstallScreen: FunctionComponent<InstallScreenProps> = ({
303304
paddingBottom={{ mobile: "xxxLarge", desktop: "none" }}
304305
>
305306
<GridItem>
306-
<Grid gridColumns={"102px 1fr"} gridColumnGap={theme.spacing.large}>
307+
<Grid gridColumns={"102px 1fr"} gridColumnGap={theme.spacing.large} style={{ alignItems: 'flex-end' }}>
307308
{/* Back Button */}
308309
{showBackButton && (
309310
<GridItem gridColumnStart={"1"} gridColumnEnd={"3"}>
@@ -328,11 +329,11 @@ export const InstallScreen: FunctionComponent<InstallScreenProps> = ({
328329
</Box>
329330
</GridItem>
330331
<GridItem>
331-
<H1 marginBottom={"small"}>{app.name}</H1>
332+
<H1 marginBottom={"xSmall"}>{app.name}</H1>
332333
<Link href={app.developer.url} target="_blank">
333334
{app.developer.name}
334335
</Link>{" "}
335-
| {app.summary}
336+
<Small as='span'>| {app.summary}</Small>
336337
</GridItem>
337338
{/* App features */}
338339
<GridItem gridColumnStart={"1"} gridColumnEnd={"3"}>
@@ -356,7 +357,7 @@ export const InstallScreen: FunctionComponent<InstallScreenProps> = ({
356357
{app.screenshots && app.screenshots.length > 0 ? (
357358
<FlexItem>
358359
<Box>
359-
<HR />
360+
<HR marginTop='large' marginBottom='large' />
360361
</Box>
361362
<Box>
362363
<EmblaCarousel

0 commit comments

Comments
 (0)