File size: 495 Bytes
aef5a44 233e279 aef5a44 233e279 aef5a44 04e85f3 aef5a44 04e85f3 | 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 | [data-theme='light'] {
--send-theme-color: #8753e9;
--receive-theme-color: #0d0c0d;
}
[data-theme='dark'] {
--send-theme-color: #8753e9;
--receive-theme-color: #333333;
}
.message {
display: flex;
flex-direction: column;
padding: 5px;
}
.message_sent {
width: fit-content;
padding: 5px;
border-radius: 5px;
background-color: var(--send-theme-color);
align-self: end;
}
.message_received {
width: fit-content;
padding: 5px;
}
|