From 6010d183960470a9188fee889d61f8b1834faa71 Mon Sep 17 00:00:00 2001 From: arzumify Date: Sat, 27 Jan 2024 15:02:58 +0000 Subject: [PATCH] Quick and bad hack for chromium browsers --- static/css/style.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index ab1d42a..63e76e3 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -157,10 +157,7 @@ body { background-position: center; background-repeat: no-repeat; background-size: 55%; -} - -.bottomBar .wordCounter { - transform: translateY(-9px) + transform: translateY(-5px); } .bottomBar button:hover { @@ -649,3 +646,12 @@ body { .links a:hover { text-decoration: dashed; } + +@supports (-webkit-appearance: none) { + .bottomBar .removeButton { + transform: translateY(0px); + } + .bottomBar .wordCounter { + transform: translateY(-9px); + } +}