- Add popup delete account
    - Fix change username - email
    - Fix color profil dash and history
This commit is contained in:
Mathis Degryck
2024-09-27 18:34:24 +02:00
committed by Mathis Degryck
parent 1d33cbc1d0
commit f511e999fe
3 changed files with 72 additions and 11 deletions

View File

@ -105,7 +105,7 @@
}
#profil .dashboard {
background-color: #D3D3D3;
background-color: white;
width: 48%;
height: 42vh;
padding: 20px;
@ -113,7 +113,7 @@
}
#profil .history {
background-color: #D3D3D3;
background-color: white;
width: 48%;
height: 42vh;
padding: 20px;

View File

@ -10,6 +10,64 @@
font-style: normal;
}
/* POUR EDDY : POPUP DELETE ACCOUNT ICI NONE -> FLEX, BE CAREFULL CHANGE DE FUNCTIONNALITY OF THE FIRST BUTTON FOR NOT DELETE THE ACCOUNT */
.popup-background-delete {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 700;
}
.popup-delete {
display: none;
flex-direction: column;
background-color: #020202;
color: white;
padding: 20px;
text-align: center;
justify-content: center;
align-items: center;
}
.popup-delete h1{
margin: 20px;
font-size: 25px;
}
.popup-delete input {
width: 70%;
padding: 20px;
margin: 20px;
/* margin-bottom: 5px; */
border: none;
background-color: white;
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
}
.popup-delete button.delete-btn {
padding: 20px;
margin-top: 20px;
width: 50%;
background-color: #D94343;
color: white;
border: none;
cursor: pointer;
transition: 0.3s ease;
}
.popup-delete button.delete-btn:hover {
transform: scale(1.1);
}
#settingsBody .container-settings {
display: grid;
grid-template-columns: 1fr 1fr;