fix new chat window

This commit is contained in:
Henry Jameson 2024-03-04 19:24:18 +02:00
parent 7238b218f9
commit 50a9c077fb
2 changed files with 22 additions and 26 deletions

View File

@ -16,11 +16,6 @@
padding-bottom: 0.7rem; padding-bottom: 0.7rem;
} }
.basic-user-card:hover {
cursor: pointer;
background-color: var(--selectedPost, $fallback--lightBg);
}
.go-back-button { .go-back-button {
text-align: center; text-align: center;
line-height: 1; line-height: 1;

View File

@ -16,6 +16,7 @@
/> />
</button> </button>
</div> </div>
<div class="panel-body">
<div class="input-wrap"> <div class="input-wrap">
<div class="input-search"> <div class="input-search">
<FAIcon <FAIcon
@ -35,9 +36,9 @@
<div <div
v-for="user in availableUsers" v-for="user in availableUsers"
:key="user.id" :key="user.id"
class="member" class="list-item"
@click.capture.prevent="goToChat(user)"
> >
<div @click.capture.prevent="goToChat(user)">
<BasicUserCard :user="user" /> <BasicUserCard :user="user" />
</div> </div>
</div> </div>