Files
neuf-www/web/src/components/events/eventItem.module.scss
2024-05-12 23:05:35 +02:00

40 lines
468 B
SCSS

.eventItem {
position: relative;
list-style: none;
&.small {
.title,
.details {
font-size: 1rem;
}
}
}
.image {
width: 100%;
padding-top: 60%;
background: var(--color-placeholder);
position: relative;
img {
position: absolute;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
}
.text {
padding: .8rem 0;
}
.title,
.details {
font-size: 1.6rem;
}
.details {
font-family: var(--font-serif);
}