modal-react-lib-projet-14
Version:
une modale de confirmation de sauvegarde du formulaire pour le projet 14
42 lines (41 loc) • 843 B
CSS
.modal{
width: 400px;
height: 100px;
background-color: #ffffff;
border-radius: 7px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.modal-content{
display: flex;
justify-content: center;
align-items: center;
}
.modal-close-icon{
position: absolute;
top: 0;
right: 0;
margin-right: 10px;
margin-top: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.close-emoji{
width: 20px;
height: 20px;
background-color: #7abc24;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 16px;
padding: 5px;
transition: background-color 0.2s ease-in-out;
}
.close-emoji:hover{
background-color: #7ba248;
cursor: pointer;
}