fix: fixed mentions menu position and focus

This commit is contained in:
Lukian 2025-04-06 23:12:57 +02:00
parent 477fff18fd
commit eae2a483b5
2 changed files with 28 additions and 3 deletions

View file

@ -16,6 +16,29 @@
.message-form {
margin: 16px 0;
position: relative;
}
.mentions {
position: absolute;
top: 100%;
border: 1px solid #270722;
padding: 5px;
display: flex;
flex-direction: column;
justify-content: start;
align-items: left;
gap: 5px;
width: 20%;
background-color: white;
}
.mention {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: top;
gap: 5px;
}
.login-prompt {