🆙 Added emoji to the chat

This commit is contained in:
duckietm
2026-02-25 11:03:29 +01:00
parent 3aaa3c4d2d
commit 32cf466fb4
4 changed files with 80 additions and 2 deletions
+28
View File
@@ -159,4 +159,32 @@
&:hover {
color: #419AD2;
}
}
.nitro-chat-input-container {
.input-sizer {
display: inline-grid;
vertical-align: top;
height: 100%;
padding: 0 10px;
&::after,
input {
width: auto;
min-width: 1em;
grid-area: 1 / 2;
margin: 0;
resize: none;
background: none;
appearance: none;
border: none;
outline: none;
}
&::after {
content: attr(data-value) ' ';
visibility: hidden;
white-space: pre-wrap;
}
}
}