FEATURE intoducing block styles

This commit is contained in:
Antoine M 2025-12-04 17:01:22 +01:00
parent f98bb9159b
commit 82eceaa3eb

View File

@ -0,0 +1,21 @@
.wp-block-carhop-blocks-image-stack {
.image-stack-item {
@apply border-2 border-primary p-4 w-fit bg-white;
img {
@apply block grayscale;
}
&.rotate-right {
@apply rotate-2;
}
&.rotate-left {
@apply -rotate-2;
}
}
&:hover {
img {
@apply grayscale-0;
}
}
}