From 7be57ecfc9367bfe12f16ec5ad670a48925c6cac Mon Sep 17 00:00:00 2001 From: luukas Date: Sat, 27 Feb 2021 14:07:16 +0200 Subject: [PATCH] Oops, forgot one thing --- app/frontend/templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/frontend/templates/base.html b/app/frontend/templates/base.html index 23ba1533..fc18f056 100644 --- a/app/frontend/templates/base.html +++ b/app/frontend/templates/base.html @@ -221,11 +221,11 @@ msgEl.append(strongEL, message); - closeEl.style.float = 'right'; closeEl.style.marginLeft = '15px'; closeEl.style.fontWeight = 'bold'; - closeEl.style.lineHeight = '20px'; + closeEl.style.float = 'right'; closeEl.style.fontSize = '22px'; + closeEl.style.lineHeight = '20px'; closeEl.style.cursor = 'pointer'; closeEl.addEventListener('click', function () {this.parentElement.style.display='none';});