22 lines
348 B
CSS
22 lines
348 B
CSS
.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;
|
|
}
|
|
}
|
|
}
|