Skip to content

Commit

Permalink
add padding:
Browse files Browse the repository at this point in the history
  • Loading branch information
roggenkemper committed Jul 31, 2024
1 parent bdf52ad commit 3fcb1e7
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions static/app/components/updatedEmptyState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,13 @@ export default function UpdatedEmptyState({project}: {project?: Project}) {
eventType="error"
>
{({indicator, firstEventButton}) => (
<div>
<FirstEventWrapper>
<IndicatorWrapper>{indicator}</IndicatorWrapper>
<StyledButtonBar gap={1}>
<GuidedSteps.BackButton size="md" />
{firstEventButton}
</StyledButtonBar>
</div>
</FirstEventWrapper>
)}
</FirstEventIndicator>
)}
Expand Down Expand Up @@ -296,13 +296,13 @@ export default function UpdatedEmptyState({project}: {project?: Project}) {
eventType="error"
>
{({indicator, firstEventButton}) => (
<div>
<FirstEventWrapper>
<IndicatorWrapper>{indicator}</IndicatorWrapper>
<StyledButtonBar gap={1}>
<GuidedSteps.BackButton size="md" />
{firstEventButton}
</StyledButtonBar>
</div>
</FirstEventWrapper>
)}
</FirstEventIndicator>
</div>
Expand Down Expand Up @@ -426,3 +426,7 @@ const CodeSnippetWrapper = styled('div')`
const DescriptionWrapper = styled('div')`
margin-bottom: ${space(1)};
`;

const FirstEventWrapper = styled('div')`
padding-top: ${space(1)};
`;

0 comments on commit 3fcb1e7

Please sign in to comment.