30 lines
668 B
SCSS
30 lines
668 B
SCSS
@use "../../core/variables" as *;
|
|
|
|
// =============================================================
|
|
// Bloc article — page de détail
|
|
// =============================================================
|
|
// Ce fichier ne porte que la coque du bloc .post.
|
|
// Les styles de contenu riche partagé (HTML Trumbowyg rendu en front
|
|
// et zone d'édition WYSIWYG) vivent dans components/_rich-text.scss.
|
|
|
|
.post {
|
|
padding: $spacing-md 0;
|
|
|
|
&__title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&__meta {
|
|
margin-bottom: $spacing-sm;
|
|
color: $color-text-muted;
|
|
}
|
|
|
|
&__updated {
|
|
margin-bottom: $spacing-sm;
|
|
}
|
|
}
|
|
|
|
.post__back {
|
|
margin-bottom: 0;
|
|
}
|