homegrade_theme_production/resources/css/blocks/content-page-header.css

40 lines
792 B
CSS

.block-content-page-header {
@apply py-8 md:py-16 flex gap-12 justify-between mx-auto;
/* @apply px-16; */
&__content {
grow: 0;
max-width: 600px;
}
&__page-icon {
@apply hidden md:block;
height: fit-content;
/* default */
max-height: 400px;
max-width: 400px;
&--small {
max-height: 300px;
max-width: 300px;
}
&--medium {
max-height: 400px;
max-width: 400px;
}
&--large {
max-height: 500px;
max-width: 500px;
}
}
&__cta-link {
@apply text-neutral-900 font-bold mt-1 block;
&:after {
content: url('../resources/img/graphic-assets/chevron-next.svg');
@apply ml-2;
}
}
p {
@apply !block;
margin-bottom: unset;
}
}