-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patterns: Distinguish between theme patterns and template parts in ca…
…tegory list (#52382)
- Loading branch information
1 parent
667838e
commit 526fa88
Showing
2 changed files
with
105 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 26 additions & 1 deletion
27
packages/edit-site/src/components/sidebar-navigation-screen-patterns/style.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
.edit-site-sidebar-navigation-screen-patterns__group { | ||
margin-bottom: $grid-unit-30; | ||
margin-bottom: $grid-unit-40; | ||
padding-bottom: $grid-unit-30; | ||
border-bottom: 1px solid $gray-800; | ||
|
||
&:last-of-type, | ||
&:first-of-type { | ||
border-bottom: 0; | ||
padding-bottom: 0; | ||
margin-bottom: 0; | ||
} | ||
|
||
&:first-of-type { | ||
margin-bottom: $grid-unit-40; | ||
} | ||
} | ||
|
||
.edit-site-sidebar-navigation-screen-patterns__group-header { | ||
p { | ||
color: $gray-600; | ||
} | ||
|
||
h2 { | ||
font-size: 11px; | ||
font-weight: 500; | ||
text-transform: uppercase; | ||
} | ||
} |