31 lines
506 B
CSS
31 lines
506 B
CSS
.homegrade-blocks-card {
|
|
@apply bg-white w-full p-8 rounded-3xl;
|
|
*:first-child {
|
|
@apply mt-0;
|
|
}
|
|
&--align-center {
|
|
@apply text-center
|
|
flex
|
|
flex-col
|
|
items-center
|
|
justify-center;
|
|
}
|
|
&--align-left {
|
|
@apply text-left;
|
|
}
|
|
&--align-right {
|
|
@apply text-right
|
|
flex
|
|
flex-col
|
|
items-end
|
|
justify-center;
|
|
}
|
|
img {
|
|
@apply rounded-none;
|
|
}
|
|
}
|
|
|
|
.homegrade-blocks-icon + .homegrade-blocks-custom-heading {
|
|
@apply mt-8;
|
|
}
|