small style change

This commit is contained in:
Janis
2022-10-28 22:02:08 +02:00
parent bedf058782
commit 95d2acfb1e
2 changed files with 4 additions and 3 deletions

View File

@@ -2,12 +2,13 @@
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
#content div {
.client-div {
margin-top: 15px;
}
.client-img-div {
float: left;
width: 100px;
width: 107px;
}
.client-img-div img {

View File

@@ -4,7 +4,7 @@ function drawClients() {
result = "";
if (thisClient) {
getClientsInChannel(thisClient.channel).forEach((c) => {
result += `<div style="color:${CONFIG.style.fontColor}; font-size:${CONFIG.style.fontSize}">`;
result += `<div class="client-div" style="color:${CONFIG.style.fontColor}; font-size:${CONFIG.style.fontSize}">`;
result += '<div class="client-img-div">';
if (c.outputMuted) {
result += ' <img src="img/muted_output.svg" />';