carhop__carhop-theme__DEV/resources/css/components/content-meta.css
Antoine M 4cd32a44cc
All checks were successful
continuous-integration/drone/push Build is passing
STYLE MAJOR CHANGE Reducing font-size and paddings everywhere
2025-10-08 15:51:47 +02:00

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; */
}
}