Show recording users in the audio layout

This commit is contained in:
N-Pex 2023-02-17 22:30:15 +01:00
parent a3627cf03c
commit 33f0821c92
3 changed files with 59 additions and 1 deletions

View file

@ -1283,6 +1283,27 @@ body {
flex: 1 0 auto;
padding: 20px;
}
.typing-users {
flex: 1 0 52px;
min-height: 52px;
padding: 20px;
overflow-x: auto;
overflow-y: hidden;
max-width: 100%;
display: flex;
.typing-user {
width: 32px !important;
height: 32px !important;
margin-left: -8px !important;
}
.list-enter-active, .list-leave-active {
transition: all 1s;
}
.list-enter, .list-leave-to /* .list-leave-active below version 2.1.8 */ {
opacity: 0;
transform: translateY(24px);
}
}
.load-later {
flex: 1 0 auto;
padding: 20px;