diff --git a/src/pages/Calendrier.js b/src/pages/Calendrier.js
index f869924..0e33cc7 100644
--- a/src/pages/Calendrier.js
+++ b/src/pages/Calendrier.js
@@ -76,17 +76,18 @@ const Calendrier = () => {
diff --git a/src/styles/components/_calendrier.scss b/src/styles/components/_calendrier.scss
index caa4c52..c2d1e65 100644
--- a/src/styles/components/_calendrier.scss
+++ b/src/styles/components/_calendrier.scss
@@ -124,8 +124,7 @@ body {
.Calendrier {
display: flex;
- flex-direction: column;
- align-items: center;
+ flex-direction: row;
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
@@ -135,14 +134,24 @@ body {
margin: 5px 10px 10px 5px;
text-align: center;
- .mini_formulaire_evenement {
+ .Titre {
display: flex;
- flex-direction: row;
- margin-top: 10px;
- height: 100px;
+ flex-direction: column;
+ justify-content: center;
+
+
+ .mini_formulaire_evenement {
+ display: flex;
+ flex-direction: column;
+ margin-top: 10px;
+ height: 100px;
+ }
.bouton_ajout {
- width: 300px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 150px;
height: 50px;
border-radius: 10px;
border: 0.5px solid;
@@ -153,6 +162,7 @@ body {
color: rgb(255, 255, 255);
cursor: pointer;
font-size: 15px;
+ margin-top: 30px;
&:hover{
background-color: rgba(114, 114, 114, 0.371);
}
@@ -162,9 +172,9 @@ body {
}
}
- .rbc-calendar {
- margin-top: 200px;
+
+ .rbc-calendar {
.rbc-day-bg {
border-radius: 5px;
}
@@ -172,6 +182,11 @@ body {
border-radius: 10px;
}
}
+
+ .ajout_input {
+ border-radius: 20px;
+ text-align: center;
+ }
}
}
}
\ No newline at end of file