fully responsive event page and components

This commit is contained in:
2025-11-23 18:58:27 +01:00
parent fc4c9a1a94
commit d5d664716e
6 changed files with 158 additions and 42 deletions
+23 -2
View File
@@ -5,7 +5,6 @@
overflow: hidden;
max-height: 0;
opacity: 0;
transform: translateY(-10px);
transition: max-height 0.5s ease, opacity 0.8s ease, transform 0.5s ease;
}
@@ -18,7 +17,6 @@
.filterClose{
max-height: 200px;
opacity: 0;
transform: translateY(-10px);
}
@@ -51,6 +49,7 @@
.filterTag svg {
transform: scale(1);
color: black;
}
@@ -61,4 +60,26 @@
.active svg {
fill: #019AFF;
transform: scale(1);
}
@media screen and (max-width: 768px){
.filterContainer {
flex-direction: row;
flex-wrap: wrap;
}
.filterOpen{
display: flex;
}
.filterClose{
display: none;
}
.filterMenu {
width: 100%;
}
abbr {
width: fit-content;
}
}