-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3a3b4fc
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[class*="Voice_voiceStates__"] { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
[class*="Voice_voiceState__"] { | ||
height: auto; | ||
margin-bottom: 0; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
[class*="Voice_avatar__"] { | ||
border-radius: 8px; | ||
filter: brightness(70%); | ||
width: 80px; | ||
height: 80px; | ||
margin-bottom: 8px; | ||
} | ||
|
||
[class*="Voice_avatarSpeaking__"] { | ||
position: relative; | ||
animation: 300ms infinite alternate ease-in-out speak-jump; | ||
filter: brightness(100%); | ||
border-color: transparent; | ||
animation-duration: 300ms; | ||
} | ||
|
||
[class*="Voice_name__"] { | ||
max-width: 80px; | ||
box-sizing: border-box; | ||
text-overflow: clip; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
display: block; | ||
text-align: center; | ||
} | ||
|
||
@keyframes speak-jump { | ||
0% { | ||
bottom: 0px; | ||
} | ||
|
||
50% { | ||
bottom: 10px; | ||
} | ||
|
||
100% { | ||
bottom: 0px; | ||
} | ||
} | ||
|
||
[class*="Voice_voiceContainer__"] { | ||
justify-content: flex-end; | ||
display: flex; | ||
} |