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:
parent
aaf116bda6
commit
083d413970
2 changed files with 8 additions and 2 deletions
|
@ -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%;
|
||||
|
|
|
@ -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%;
|
||||
|
|
Loading…
Add table
Reference in a new issue