Skip to content

Commit

Permalink
Separator: Remove border-bottom property (#55725)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjcafferkey authored Jan 29, 2024
1 parent bfcca1a commit e1624cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/block-library/src/separator/style.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.wp-block-separator {
border-top: 1px solid currentColor;
border-bottom: 1px solid currentColor;
border-top: 2px solid currentColor;
// Default, thin style, is stored in theme.scss so it can be opted out of

// Unset the left and right borders by default, otherwise some browsers will render them as "inset".
// Unset the left, right and bottom borders by default, otherwise some browsers will render them as "inset".
border-left: none;
border-right: none;
border-bottom: none;

// Dots style
&.is-style-dots {
Expand Down

0 comments on commit e1624cf

Please sign in to comment.