se cargan modulos de chat en tiempo real

This commit is contained in:
2026-02-28 16:10:19 -06:00
parent 68d32dbd88
commit aeb24f2874
28 changed files with 1830 additions and 33 deletions
+28
View File
@@ -288,3 +288,31 @@ button:hover {
#content{
flex:1;
}
.message {
display: flex;
margin-bottom: 10px;
}
.message.mine {
justify-content: flex-end;
}
.message.theirs {
justify-content: flex-start;
}
.bubble {
max-width: 60%;
padding: 10px;
border-radius: 12px;
background: #e4e6eb;
}
.message.mine .bubble {
background: #4e73df;
color: white;
}