wf4/app/assets/css/blog/article.css
webfussel 4104477533 add: article view
View for blog articles
2025-07-11 13:32:59 +02:00

20 lines
No EOL
359 B
CSS

.BlogArticle {
display: flex;
flex-direction: column;
gap: 2rem;
& .image {
width: 100%;
height: 450px;
border-radius: 1rem;
overflow: hidden;
background: #000;
& img {
width: 100%;
height: 100%;
opacity: .8;
object-fit: cover;
}
}
}