[refactor] update channel name style

This commit is contained in:
Janis Meister
2023-06-30 13:25:44 +02:00
parent 113fcb28de
commit 0d3317802c
2 changed files with 18 additions and 5 deletions

View File

@@ -16,7 +16,11 @@ export default function Viewer({
}) {
return (
<div className="viewer">
{showChannelName ? <h3>{channel?.properties.name}</h3> : null}
{showChannelName ? (
<div className="channelNameContainer">
<h3>{channel?.properties.name}</h3>
</div>
) : null}
{clients?.map((client, i) => {
//* Client limit
if (clientLimit != 0 && i >= clientLimit) {