mirror of
https://github.com/DerTyp7/teamspeak-obs-overlay.git
synced 2025-10-29 12:52:09 +01:00
[refactor] update channel name style
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user