Merge branch 'master' of https://codefirst.iut.uca.fr/git/noan.randon/Favor
continuous-integration/drone/push Build encountered an error Details

master
Darius BERTRAND 2 years ago
commit c1a1e9dacc

@ -29,6 +29,7 @@ const AjoutLien = () => {
dispatch(getPosts());
cancelPost();
setDisplayAdd(false);
await new Promise(r => setTimeout(r, 500));
window.location.reload();
}else {
alert("Veuillez compléter tous les champs et ajouter au moins un tag.")

@ -189,10 +189,10 @@ const Profil = () => {
</div>
)}
{followerPopup && (
<div classNameName="popup-profil-container">
<div classNameName="modal">
<h3>Abonnés</h3>
<span classNameName="cross" onClick={() => setFollowerPopup(false)}>
<div className="popup-profil-container">
<div className="modal">
<h3>Abonnements</h3>
<span className="cross" onClick={() => setFollowerPopup(false)}>
&#10005;
</span>
<ul>
@ -212,8 +212,6 @@ const Profil = () => {
</div>
</div>
)}
</div>

@ -15,9 +15,7 @@ const Trends = () => {
{
userData.notif != null && userData.notif.map((notif) => {
return (
<li>
<Notif key={notif._id} notification={notif}/>
</li>
);
})

@ -8,8 +8,6 @@
cursor: pointer;
}
.popup-ajout-container {
position: fixed;
animation: popup 1s forwards;

@ -1,6 +1,7 @@
.miniProfil{
display: flex;
justify-content: start;
margin-right: 5px;
}
.infoMiniProfil{

@ -59,6 +59,7 @@
position: absolute;
top: 10%;
left: 50%;
width: 500px;
transform: translate(-100%);
background: $color-2;
padding: 25px;

@ -15,7 +15,7 @@
.listUsers{
padding-top: 20px;
li {
ul {
list-style: none;
padding-left: 10%;
padding-bottom: 15px;

Loading…
Cancel
Save