events-grid - finish

This commit is contained in:
isUnknown 2024-07-31 11:20:08 +02:00
parent 024e142a23
commit 41a7b7b4cb
5 changed files with 36 additions and 11 deletions

View file

@ -10,14 +10,22 @@
margin-bottom: calc(var(--space-m) / 2);
}
.event-card__infos h5 {
max-width: 95%;
}
.event-card__infos .ticket {
margin-top: 0.3rem;
}
.event-card__infos > div {
display: grid;
grid-template-columns: repeat(2, 1fr);
display: flex;
justify-content: space-between;
}
.event-card__infos > div:first-child {
margin-bottom: calc(var(--space-m) / 2);
}
.event-card__infos > div > *:not(h5):last-child {
place-self: end;
/* place-self: end; */
}