13 lines
312 B
CSS
13 lines
312 B
CSS
.page-card {
|
|
@apply relative py-6 px-16 shadowed my-4 bg-white rounded-2xl grid gap-12 justify-center items-center;
|
|
grid-template-columns: 120px 1fr;
|
|
&__title {
|
|
@apply !text-2xl font-bold text-secondary !my-0;
|
|
}
|
|
&__cta {
|
|
}
|
|
&__page-cover-illustration {
|
|
@apply rounded-2xl;
|
|
}
|
|
}
|