Dara: Fix display of dotted separator (#7979)

The dotted separator wasn't displaying because the height of the
separator was too small. This change overrides the height for the dotted
separator only.
This commit is contained in:
Dean Sas 2024-07-31 11:48:30 +01:00 committed by GitHub
parent aaf116bda6
commit 083d413970
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -333,9 +333,12 @@ hr.wp-block-separator {
border: 0;
}
.wp-block-separator:not(.is-style-dots) {
height: 1px;
}
.wp-block-separator {
border: 0;
height: 1px;
margin: 1.6em auto;
background-color: #e6e6e6;
max-width: 66%;

View file

@ -805,9 +805,12 @@
/* Separator */
.wp-block-separator:not(.is-style-dots) {
height:1px;
}
.wp-block-separator {
border: 0;
height: 1px;
margin: 1.6em auto;
background-color: #e6e6e6;
max-width: 66%;