16 lines
282 B
CSS
16 lines
282 B
CSS
.page-header {
|
|
@apply bg-primary text-white py-16 items-center;
|
|
|
|
&__inner {
|
|
@apply grid grid-cols-1 lg:grid-cols-2;
|
|
grid-template-columns: 61.8fr 38.2fr;
|
|
}
|
|
|
|
&__title {
|
|
@apply !text-white;
|
|
}
|
|
&__subtitle {
|
|
@apply text-white text-6xl;
|
|
}
|
|
}
|