homegrade_blocks_production/blocks/picture-banner/src/style.scss
Antoine M 0e355be895
All checks were successful
continuous-integration/drone/push Build is passing
handling picture caption
2025-03-18 08:55:06 +01:00

26 lines
451 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-picture-banner {
margin-bottom: 20px;
overflow: hidden;
img {
border-radius: 22px;
width: 100%;
}
figcaption {
padding: 2px 10px;
}
&.fixed-height {
img {
height: 200px;
object-fit: cover;
object-position: center;
}
}
}