carhop__carhop-theme__DEV/resources/css/compositions/proposer-votre-sujet.css
Antoine M 7f53d2b608
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Handling proposer sujet compositions
2026-05-05 15:28:14 +02:00

22 lines
594 B
CSS

.proposer-votre-sujet {
--block-rotation: 4deg;
figure::after {
@apply w-12 h-12 bg-carhop-green-700;
transform: rotate(var(--block-rotation)) translateX(calc(100% + 2rem));
content: '';
position: absolute;
top: 30px;
right: 10px;
background-image: url('../resources/img/icons/carhop-reproduction-white.svg');
background-position: center;
background-size: 50%;
background-repeat: no-repeat;
}
figure.wp-block-image.is-style-framed-rotated {
transform: rotate(calc(-1 * var(--block-rotation))) translateX(-1rem);
}
}