34 lines
519 B
CSS
34 lines
519 B
CSS
.heading-box--parcours-single {
|
|
@apply mt-8
|
|
py-8
|
|
lg:py-16
|
|
flex
|
|
relative
|
|
flex-nowrap
|
|
items-center
|
|
justify-between;
|
|
.post-infos-capsule {
|
|
@apply mt-8;
|
|
}
|
|
&__type {
|
|
@apply !text-xl !my-0 !tracking-widest font-bold;
|
|
}
|
|
&__title {
|
|
@apply !text-4xl font-bold max-w-3xl;
|
|
}
|
|
|
|
&__page-icon {
|
|
@apply w-32 h-32 object-contain
|
|
rounded-xl
|
|
hidden
|
|
lg:block;
|
|
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
&__content {
|
|
flex-shrink: 1;
|
|
flex-grow: 2;
|
|
}
|
|
}
|