feat: implement event submission flow with image upload and modal interface

This commit is contained in:
2026-05-10 21:47:28 +02:00
parent 7db35361d9
commit 197594f84f
31 changed files with 1481 additions and 75 deletions

View File

@@ -57,4 +57,34 @@ h4 {
.prose p {
margin-bottom: 1.25em;
text-align: left;
}
/* Styles pour les tableaux dans le contenu */
#blog-content table,
.prose table {
width: 100%;
border-collapse: collapse;
margin: 1.5em 0;
font-size: 0.9em;
border: 1px solid #e2e8f0;
}
#blog-content th,
#blog-content td,
.prose th,
.prose td {
border: 1px solid #e2e8f0;
padding: 0.75rem;
text-align: left;
}
#blog-content th,
.prose th {
background-color: #f8fafc;
font-weight: 600;
}
#blog-content tr:nth-child(even),
.prose tr:nth-child(even) {
background-color: #fcfcfc;
}