feat(images): auto-select relevant article images and tidy detail header

This commit is contained in:
Oliver 2026-02-18 10:40:39 +01:00
parent fb3465fb10
commit 26e3d26b93
4 changed files with 115 additions and 13 deletions

View file

@ -179,6 +179,27 @@ button.secondary {
background: #f8fafc;
}
.detail-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 8px 12px;
margin-bottom: 10px;
}
.detail-item {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 8px;
display: grid;
gap: 4px;
}
.detail-item .k {
font-size: 12px;
color: #64748b;
}
.thumb {
width: 72px;
height: 72px;