23 lines
467 B
CSS
23 lines
467 B
CSS
.content-meta {
|
|
@apply flex items-end gap-6 mb-4;
|
|
|
|
&__type {
|
|
@apply font-bold text-lg flex items-center gap-2;
|
|
|
|
&:before {
|
|
@apply content-[''] mr-2 h-6 w-6 inline-block;
|
|
}
|
|
&--revue:before {
|
|
@apply rounded-full bg-carhop-orange-400;
|
|
}
|
|
&--article:before {
|
|
@apply w-6 bg-carhop-purple-300 -rotate-45;
|
|
}
|
|
}
|
|
|
|
&__reading-time {
|
|
line-height: 27px;
|
|
/* @apply text-sm text-gray-500; */
|
|
}
|
|
}
|