homegrade_blocks_production/blocks/points-cles/src/editor.scss

27 lines
496 B
SCSS

/**
* The following styles get applied inside the editor only.
*
* Replace them with your own styles or remove the file completely.
*/
.wp-block-homegrade-content-blocks-points-cles {
ul {
li {
list-style: none !important;
display: flex;
padding: 10px 0;
}
li:before {
transform: translateY(6px);
flex-shrink: 0;
border-radius: 50%;
content: "";
width: 10px;
height: 10px;
display: inline-block;
background-color: red;
margin-right: 10px;
}
}
}