From 55404684d38b62bea4ae8da2b8c44e5b38c81568 Mon Sep 17 00:00:00 2001 From: repjarms Date: Mon, 20 May 2019 14:46:19 -0400 Subject: [PATCH 1/2] feat(Terms of Use): add terms of use to the application --- public/index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public/index.html b/public/index.html index b560e48..ffb7e7e 100755 --- a/public/index.html +++ b/public/index.html @@ -41,6 +41,13 @@ No Personal Data is to be entered into this system as it may not have the necessary controls in place to meet the requirements of the General Data Protection Regulation (EU) 2016/679. +
+ By using this application, you agree to the  + + Terms of Use + +
Type something to see the From 2fdc0a58a11da28503956a0e808521a30be98354 Mon Sep 17 00:00:00 2001 From: repjarms Date: Mon, 20 May 2019 14:46:42 -0400 Subject: [PATCH 2/2] fix(Layout): use flex to lay out chat column instead of fixed calc --- public/css/app.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/css/app.css b/public/css/app.css index 0a689ad..69c18e9 100755 --- a/public/css/app.css +++ b/public/css/app.css @@ -69,7 +69,9 @@ div { } .chat-column { - height: 93%; + display: flex; + flex-direction: column; + height: 90%; padding: 0.9375rem 0 0.625rem 0; margin: auto; text-align: left; @@ -78,10 +80,10 @@ div { } #scrollingChat { + flex: 1; margin: 0.75rem; overflow-y: auto; overflow-x: hidden; - height: calc(100% - 10rem); } .message-inner {