132 lines
2.1 KiB
SCSS
132 lines
2.1 KiB
SCSS
.chat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
.archive-button {
|
|
height: 20px;
|
|
border-radius: 4px;
|
|
}
|
|
.chat-title {
|
|
margin-bottom: 5px;
|
|
}
|
|
.messages {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.5rem; // Prevent edge clipping
|
|
}
|
|
|
|
.message {
|
|
position: relative;
|
|
border-radius: 20px;
|
|
padding: 0.25rem 0.8rem;
|
|
word-wrap: break-word;
|
|
|
|
&-img {
|
|
max-width: 10rem;
|
|
max-height: 10rem;
|
|
object-fit: contain;
|
|
margin: 0.2rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
&-images {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
}
|
|
.chat-send-message-button{
|
|
margin: 0.3rem;
|
|
padding-left: 0.5rem;
|
|
|
|
}
|
|
.message-icon {
|
|
position: absolute;
|
|
bottom: 0.1rem;
|
|
right: 0.3rem;
|
|
margin: 0 0.1rem;
|
|
color: whitesmoke;
|
|
z-index: 5;
|
|
}
|
|
|
|
.msgmargin {
|
|
margin: 0.1rem 0;
|
|
}
|
|
|
|
.yours,
|
|
.mine {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.message {
|
|
position: relative;
|
|
|
|
&:last-child:before,
|
|
&:last-child:after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: 20px;
|
|
width: 20px;
|
|
z-index: 0;
|
|
}
|
|
|
|
&:last-child:after {
|
|
width: 10px;
|
|
background: white;
|
|
z-index: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* "Yours" (incoming) message styles */
|
|
.yours {
|
|
align-items: flex-start;
|
|
|
|
.message {
|
|
margin-right: 20%;
|
|
background-color: #eee;
|
|
|
|
&:last-child:before {
|
|
left: -7px;
|
|
background: #eee;
|
|
border-bottom-right-radius: 15px;
|
|
}
|
|
|
|
&:last-child:after {
|
|
left: -10px;
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* "Mine" (outgoing) message styles */
|
|
.mine {
|
|
align-items: flex-end;
|
|
|
|
.message {
|
|
color: white;
|
|
margin-left: 25%;
|
|
background: linear-gradient(to bottom, #00d0ea 0%, #0085d1 100%);
|
|
padding-bottom: 0.6rem;
|
|
|
|
&:last-child:before {
|
|
right: -8px;
|
|
background: linear-gradient(to bottom, #00d0ea 0%, #0085d1 100%);
|
|
border-bottom-left-radius: 15px;
|
|
}
|
|
|
|
&:last-child:after {
|
|
right: -10px;
|
|
border-bottom-left-radius: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.virtuoso-container {
|
|
flex: 1;
|
|
overflow: auto;
|
|
}
|