tidy up upcoming events, remove newslist bg

This commit is contained in:
elisejakob
2024-05-23 13:21:33 +02:00
parent 2d9fd68060
commit f9837ad876
4 changed files with 24 additions and 4 deletions

View File

@ -11,8 +11,9 @@
}
&.medium {
--size-image-width: 8rem;
display: grid;
grid-template-columns: 1fr auto;
grid-template-columns: var(--size-image-width) auto;
column-gap: .6rem;
align-items: center;
width: var(--size-item-width);
@ -23,7 +24,7 @@
}
.image {
width: 7rem;
width: var(--size-image-width);
}
}
}

View File

@ -13,9 +13,10 @@
.eventList {
--size-item-width: 20rem;
padding: 1rem 0;
list-style: none;
display: flex;
width: calc(var(--size-item-width) * 5);
width: calc(var(--size-item-width) * 10);
li {
padding-right: 1rem;

View File

@ -1,5 +1,4 @@
.newsWrapper {
background: var(--color-background-secondary);
margin: 0 calc(var(--spacing-sitepadding)*-1);
padding: var(--spacing-sitepadding);