diff options
-rw-r--r-- | public/style/master.css | 2 | ||||
-rw-r--r-- | source/client/user.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/public/style/master.css b/public/style/master.css index a2d0d98..31c8eeb 100644 --- a/public/style/master.css +++ b/public/style/master.css @@ -99,7 +99,7 @@ input[type="text"] { } .media { - height: 100%; + max-height: 30vh; width: auto; border: 0px solid transparent; border-radius: 5px; diff --git a/source/client/user.ts b/source/client/user.ts index 4716d46..335a8a8 100644 --- a/source/client/user.ts +++ b/source/client/user.ts @@ -70,7 +70,7 @@ export abstract class User { const el = document.createElement("div") if (t.local) { const end_button = document.createElement("button") - end_button.textContent = "end track" + end_button.textContent = "End" end_button.addEventListener("click", () => { t.end() }) |