-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixing merging error * merging two button two one and start validateFormInputs * validateFormInputs implemented * add rejected functionality * modified icon workflow * modifying little css things * valid submit goes to confirm page * update data even if form is invalid * button and submit logic is done * Css tweaks show more is fix on the right, progressbar is sticky, modal is clean * fix lint * adding confirmPage but data importation not working. * Access/Route to confirm page + started working on css * Sent images to confirmpage * fix css * No need to approve all * Fixed carousel * merge correction * lint + prettier * forgot a lint * fix build --------- Co-authored-by: Samuel Pelletier Evraire <[email protected]>
- Loading branch information
1 parent
37a0eae
commit 6cce7d9
Showing
13 changed files
with
225 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
.btn-container { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 8px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
overflow: hidden; | ||
top: 10px; | ||
left: 10px; | ||
z-index: 1; | ||
border:1px solid black; | ||
} | ||
display: flex; | ||
flex-direction: column; | ||
gap: 8px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
overflow: hidden; | ||
top: 10px; | ||
left: 10px; | ||
z-index: 1; | ||
border: 1px solid black; | ||
} | ||
|
||
.btn-container button { | ||
border: none; | ||
color: #737373; | ||
background-color: #fff; | ||
padding: 10px; | ||
cursor: pointer; | ||
} | ||
border: none; | ||
color: #737373; | ||
background-color: #fff; | ||
padding: 10px; | ||
cursor: pointer; | ||
} | ||
|
||
.zoom-in-out { | ||
cursor: grab; | ||
height: 100%; | ||
} | ||
.zoom-in-out:active { | ||
cursor: grabbing; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.data-infos { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
.confirm-page-container { | ||
display: grid; | ||
grid-template-areas: | ||
"title title" | ||
"pics infos"; | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
.confirm-page-container .carousel-wrapper { | ||
grid-area: pics; | ||
} | ||
#confirm-title { | ||
grid-area: title; | ||
text-align: center; | ||
} | ||
.confirm-container { | ||
grid-area: infos; | ||
border: 2px rgb(172, 170, 170) solid; | ||
border-radius: 10px; | ||
padding-left: 8%; | ||
padding-right: 8%; | ||
background-color: rgb(220, 219, 219); | ||
text-overflow: ellipsis; | ||
margin-right: 3%; | ||
} | ||
.confirm-container h2 { | ||
text-align: left; | ||
margin-bottom: 0px; | ||
} | ||
.confirm-container ul { | ||
padding-left: 20px; | ||
} | ||
.confirm-container li { | ||
margin-bottom: 10px; | ||
font-size: 20px; | ||
text-align: left; | ||
} |
Oops, something went wrong.