@@ -44,13 +46,19 @@ export default function Viewer({
if (client) {
//* Non-talking client
- if (hideNonTalking && (client.properties.inputMuted || client.properties.outputMuted || client.talkStatus == 0)) {
+ if (
+ hideNonTalking &&
+ (client.properties.inputMuted || client.properties.outputMuted || client.talkStatus == 0)
+ ) {
return null;
}
//* Normal client
return (
-
+
{client.properties.outputHardware == false ? (
) : client.properties.outputMuted ? (
diff --git a/src/styles/Viewer.scss b/src/styles/Viewer.scss
index a8ed941..d8d4508 100644
--- a/src/styles/Viewer.scss
+++ b/src/styles/Viewer.scss
@@ -7,6 +7,10 @@
flex-direction: column;
padding: 0.5rem;
+ &--align-right {
+ align-items: flex-end;
+ }
+
h1 {
font-size: 5vw;
}
@@ -32,9 +36,12 @@
.client {
display: flex;
flex-direction: row;
- gap: 0 0;
+ gap: 0.5rem 0.5rem;
align-items: center;
- margin: 0.5rem 0;
+
+ &--align-right {
+ flex-direction: row-reverse;
+ }
// icon styles
svg {