2022-06-29 14:15:36 +02:00
|
|
|
.credits-panel {
|
2023-01-04 18:00:56 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1.6rem;
|
|
|
|
&.no-header > * { margin: 0; }
|
|
|
|
.title { @include text-base(600); }
|
2022-06-29 14:15:36 +02:00
|
|
|
|
2023-01-04 18:00:56 +01:00
|
|
|
.credits-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 0.8rem;
|
2022-06-29 14:15:36 +02:00
|
|
|
|
2023-01-04 18:00:56 +01:00
|
|
|
&-item {
|
|
|
|
padding: 1.6rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 1.6rem 2.4rem;
|
|
|
|
background-color: var(--gray-soft-lightest);
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
|
|
|
.title { @include text-base(600); }
|
|
|
|
p { margin: 0; }
|
2022-06-29 14:15:36 +02:00
|
|
|
|
2023-01-04 18:00:56 +01:00
|
|
|
@media (min-width: 640px) {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
}
|
2022-06-29 14:15:36 +02:00
|
|
|
}
|
|
|
|
}
|