- on popup chat, point on end line for see if you have seen the last message
    - on chat buttton, red point for know if you have a new message
    - fix image in live chat
This commit is contained in:
Kum1ta
2024-09-29 03:52:10 +02:00
parent 4ef459e2cc
commit 24fe748130
8 changed files with 104 additions and 48 deletions

View File

@ -3,10 +3,10 @@
/* ::: :::::::: */
/* liveChat.css :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marvin <marvin@student.42.fr> +#+ +:+ +#+ */
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/30 13:53:39 by edbernar #+# #+# */
/* Updated: 2024/09/18 12:20:37 by marvin ### ########.fr */
/* Updated: 2024/09/29 03:24:21 by edbernar ### ########.fr */
/* */
/* ************************************************************************** */
@ -28,10 +28,8 @@
transition: transform 0.3s ease;
}
/* Pour EDDY : Put display none and change on js to display flex when we have notification */
.notification-badge {
display: flex;
display: none;
position: absolute;
top: 10px;
right: 10px;
@ -251,4 +249,23 @@
#infoChat {
text-align: center;
margin-top: 100px;
}
.user {
display: flex;
flex-direction: row;
align-items: center;
}
.user span {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ffffffe4;
margin-right: 10px;
}
.status img {
object-fit: cover;
object-position: center;
}