Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions static/app/components/group/suggestedOwners/ownershipRules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const OwnershipRules = ({
const codeOwnersCTA = (
<Container dashedBorder>
<HeaderContainer>
<Header>{t('Codeowners sync')}</Header> <FeatureBadge type="beta" noTooltip />
<Header>{t('Codeowners sync')}</Header>{' '}
<FeatureBadge style={{top: -3}} type="beta" noTooltip />
<DismissButton
icon={<IconClose size="xs" />}
priority="link"
Expand Down Expand Up @@ -165,16 +166,16 @@ const HeaderContainer = styled('div')`
align-items: flex-start;
`;

const Header = styled('h4')`
const Header = styled('h6')`
margin-bottom: ${space(1)};
text-transform: uppercase;
font-weight: bold;
color: ${p => p.theme.gray400};
font-size: ${p => p.theme.fontSizeMedium};
color: ${p => p.theme.gray300};
font-size: ${p => p.theme.fontSizeExtraSmall};
`;

const Content = styled('span')`
color: ${p => p.theme.subText};
color: ${p => p.theme.gray500};
margin-bottom: ${space(2)};
`;

Expand Down