Create event modal

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-12-15 14:25:25 +01:00
parent 76284a30f5
commit 9cd56a8472
4 changed files with 42 additions and 11 deletions
@@ -0,0 +1,20 @@
.createButton {
font-size: 1.5rem;
color: black;
}
.createButton {
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 50% !important;
width: 55px !important;
height: 55px !important;
transition: all 0.5s ease;
}
.createButton:hover {
transform: translateY(-5px);
cursor: pointer;
}