mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
575 B
Plaintext
31 lines
575 B
Plaintext
.chatbox-mention-input {
|
|
@apply shadow-none border-0 px-4 py-2 flex-1 overflow-x-auto;
|
|
|
|
&__control {
|
|
@apply relative;
|
|
}
|
|
|
|
&__input {
|
|
@apply outline-none;
|
|
}
|
|
|
|
&__suggestions {
|
|
@apply bg-transparent !important;
|
|
|
|
&__list {
|
|
@apply border border-gray-500 bg-content-light dark:bg-content-dark rounded overflow-auto absolute;
|
|
max-height: 60vh;
|
|
min-width: 240px;
|
|
bottom: 14px;
|
|
}
|
|
|
|
&__item {
|
|
@apply rounded;
|
|
|
|
&--focused {
|
|
@apply bg-black bg-opacity-20 dark:bg-white dark:bg-opacity-20;
|
|
}
|
|
}
|
|
}
|
|
}
|