⎗ ✓ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84.custom-chat-msg { display: flex; margin: 5px 0; --chat-msg-bg: #1D2128; --chat-msg-border: #eef5ff; } .custom-chat-msg-avatar { width: 100px; height: 100px; line-height: 100px; text-align: center; border-radius: 50%; object-fit: cover; margin: auto; margin-inline: 0 20px; flex-shrink: 0; } .custom-chat-msg-content { position: relative; z-index: 0; min-width: 200px; max-width: 520px; width: fit-content; border: 2px solid var(--chat-msg-border); padding: 10px; text-align: center; font-weight: 800; color: #faf8f7; font-family: Arial, sans-serif; border-radius: 8px; background: var(--chat-msg-bg); margin: auto 0; } .custom-chat-msg-text { max-height: 100px; overflow-y: auto; word-wrap: break-word; } .custom-chat-msg-content::before, .custom-chat-msg-content::after { content: ''; width: 0; height: 0; position: absolute; top: 50%; transform: translateY(-50%); } .custom-chat-msg-content::before { border-right: 10px solid var(--chat-msg-border); border-left: 10px solid transparent; border-top: 6px solid var(--chat-msg-border); border-bottom: 6px solid transparent; left: -20px; } .custom-chat-msg-content::after { border-right: 7px solid var(--chat-msg-bg); border-left: 7px solid transparent; border-top: 4px solid var(--chat-msg-bg); border-bottom: 4px solid transparent; left: -11px; z-index: 2; } .mes_text { text-wrap: pretty; } .mes_text > p { font-size: 1.1em; } #chat .mes .mesAvatarWrapper { display: none; } #chat .mes .name_text { display: none; }