From bbc98ad248a6c0ee7201cc3119df2ba762203609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Mon, 20 Jul 2020 21:41:29 +0200 Subject: [PATCH] center search form vertically --- client/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/client/style.css b/client/style.css index 824c16a..60cd99c 100755 --- a/client/style.css +++ b/client/style.css @@ -282,6 +282,7 @@ tbody tr:hover td { color: white; display: flex; flex-direction: column; + margin-bottom: 5em; } .search table { @@ -897,3 +898,11 @@ form>div.history { #selected { background-color: #bfbfbf !important; } + +#content { + display: flex; + flex-direction: column; + justify-content: center; + min-height: 100vh; + +}