fix viewer font size

This commit is contained in:
Janis
2023-11-12 19:19:33 +01:00
parent 7fd2e2aafa
commit 4eb61d3b96
4 changed files with 10 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ export default function Viewer({
remoteAppPort: remoteAppPort,
auth: {
identifier: "de.tealfire.obs",
version: "2.0.6",
version: "2.0.7",
name: "TS5 OBS Overlay",
description: "A OBS overlay for TS5 by DerTyp7",
},

View File

@@ -7,6 +7,10 @@
flex-direction: column;
padding: 0.5rem;
h1 {
font-size: 5vw;
}
h1,
p {
background-color: #2f313680;
@@ -34,14 +38,15 @@
// icon styles
svg {
width: 2.1rem;
width: 5vw;
aspect-ratio: 1/1;
margin-right: 0.5rem;
filter: drop-shadow(0 0 0.75rem rgba(15, 15, 15, 0.1));
}
// client name styles
p {
font-size: 1.4rem;
font-size: 5vw;
}
}
}