45 lines
714 B
SCSS
45 lines
714 B
SCSS
/**
|
|
* The following styles get applied both on the front of your site
|
|
* and in the editor.
|
|
*
|
|
* Replace them with your own styles or remove the file completely.
|
|
*/
|
|
|
|
.wp-block-homegrade-content-blocks-points-cles {
|
|
margin-bottom: 2rem;
|
|
&__titling {
|
|
display: flex;
|
|
align-items: center;
|
|
.icon {
|
|
background-color: black;
|
|
border-radius: 50%;
|
|
aspect-ratio: 1/1;
|
|
width: 40px;
|
|
padding: 10px;
|
|
height: fit-content;
|
|
|
|
img {
|
|
width: 30px;
|
|
height: auto;
|
|
}
|
|
}
|
|
h3 {
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
|
|
ul li {
|
|
// list-style-type: disc;
|
|
// list-style-position: inside;
|
|
// display: flex;
|
|
margin-left: 1.5em;
|
|
}
|
|
|
|
p + ul {
|
|
padding-top: 16px;
|
|
}
|
|
ul + p {
|
|
padding-top: 16px;
|
|
}
|
|
}
|