Fix responsive eventDetail

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-01-14 21:57:49 +01:00
parent 98e5b54858
commit aff23432d6
2 changed files with 18 additions and 0 deletions
@@ -38,4 +38,11 @@
opacity: 1;
transform: translateY(0);
}
}
@media screen and (max-width: 768px) {
.task {
flex-direction: column;
}
}
@@ -67,4 +67,15 @@
display: flex;
flex-direction: row;
gap: 10px;
}
@media screen and (max-width: 768px) {
.eventContent {
flex-direction: column;
}
.textImage {
flex-direction: column;
}
}