feat: console/chat/playerlist use full viewport height
Replaced fixed 600px output heights with calc(100vh - 130px) so console and chat logs fill the available space. Added min-height to player list table so it doesn't look empty with few players. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@
|
||||
function ConsolePage(params, container) {
|
||||
var html =
|
||||
'<div id="ConsoleController">' +
|
||||
'<div id="console-output" style="height:600px" class="Output scrollable text-white-50">Loading…</div>' +
|
||||
'<div id="console-output" style="height:calc(100vh - 130px)" class="Output scrollable text-white-50">Loading…</div>' +
|
||||
'<form id="console-form">' +
|
||||
'<input type="text" id="console-input" class="form-control" autocomplete="off">' +
|
||||
'</form>' +
|
||||
|
||||
Reference in New Issue
Block a user