feat: images de couverture (liste, vue article, og:image)

This commit is contained in:
Cedric Abonnel
2026-05-08 23:04:05 +02:00
parent 35503e43b0
commit 8703a5544f
4 changed files with 41 additions and 1 deletions
+17
View File
@@ -151,6 +151,23 @@ a:hover {
height: 120px;
border-radius: var(--vl-radius) var(--vl-radius) 0 0;
flex-shrink: 0;
background-size: cover;
background-position: center;
}
/* Couverture pleine largeur dans la vue article */
.article-cover {
margin: 0;
overflow: hidden;
border-radius: var(--vl-radius) var(--vl-radius) 0 0;
flex-shrink: 0;
}
.article-cover img {
width: 100%;
height: 340px;
object-fit: cover;
display: block;
}
.card {