We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d13edd commit c2bb8d3Copy full SHA for c2bb8d3
static/app/views/onboarding/components/scmFeatureCard.tsx
@@ -56,11 +56,11 @@ export function ScmFeatureCard({
56
gap="xs lg"
57
align="center"
58
areas={`
59
- "cell1 cell2"
60
- ". cell4"
+ "icon label"
+ ". description"
61
`}
62
>
63
- <Container area="cell1">
+ <Container area="icon">
64
{containerProps => (
65
<Icon
66
{...containerProps}
@@ -70,12 +70,12 @@ export function ScmFeatureCard({
70
)}
71
</Container>
72
73
- <Container area="cell2">
+ <Container area="label">
74
<Text bold size="lg">
75
{label}
76
</Text>
77
78
- <Container area="cell4">
+ <Container area="description">
79
<Text variant="muted">{description}</Text>
80
81
</Grid>
0 commit comments