Skip to content

Commit

Permalink
fix(onboarding): Fix alert alignment (#76598)
Browse files Browse the repository at this point in the history
  • Loading branch information
priscilawebdev committed Aug 28, 2024
1 parent 94a09ff commit 4e0dfdb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions static/app/components/onboarding/productSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -546,4 +546,12 @@ const TooltipDescription = styled('div')`

const AlternativeInstallationAlert = styled(Alert)`
margin-bottom: 0px;
/*
* The first child is the icon.
* We render a button within the message, so to ensure proper alignment,
* the height of the first child (icon) needs to be set to 'auto'.
*/
> *:first-child {
height: auto;
}
`;

0 comments on commit 4e0dfdb

Please sign in to comment.