Skip to content

Commit

Permalink
Design tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeyGuyDylan committed Jul 12, 2024
1 parent 4a1ea65 commit 1159488
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ export default function MyJetpackScreen() {

return (
<AdminPage siteAdminUrl={ adminUrl }>
<hr className={ styles.separator } />

<IDCModal />
{ ! isNewUser && (
<Container horizontalSpacing={ 0 }>
Expand All @@ -135,7 +137,7 @@ export default function MyJetpackScreen() {
) }
<WelcomeBanner />
{ noticeMessage && ! isWelcomeBannerVisible && (
<Container horizontalSpacing={ 6 } horizontalGap={ 3 }>
<Container horizontalSpacing={ 3 } horizontalGap={ 3 }>
<Col>
{
<GlobalNotice
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,9 @@
fill: none;
}
}
}

.separator {
margin: 0;
border-bottom: none;
}
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ const ProductCardsSection: FC< ProductCardsSectionProps > = ( { noticeMessage }
</AdminSectionHero>
) }

<br />

{ unownedProducts.length > 0 && (
<Container horizontalSpacing={ 6 } horizontalGap={ noticeMessage ? 3 : 6 }>
<Col>
Expand Down

0 comments on commit 1159488

Please sign in to comment.