From c8ee71e8acaafc390c9d100ca7cd7b664f622b5b Mon Sep 17 00:00:00 2001 From: Acid147 Date: Thu, 29 Nov 2018 00:10:37 +0100 Subject: [PATCH] Change top and bottom of console window By setting these values, the window size should remain the same as before but no text is hidden at the bottom of the console window. This should fix #72 but was only tested by editing the values in the browser (Firefox) --- console.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/console.css b/console.css index fec2231..17612be 100644 --- a/console.css +++ b/console.css @@ -2,8 +2,8 @@ pointer-events:auto; position:absolute; left:auto; - top:auto; - bottom:auto; + top:8px; + bottom:0; right:auto; max-height:100%; width:98%; @@ -39,4 +39,4 @@ #debug_console a.log-button { display:none!important; -} \ No newline at end of file +}