From 1500a3f2c83f85f759b5393ca0c909d41733cda9 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 3 Apr 2025 22:11:22 +0200 Subject: [PATCH] Mobile: Move menu 1px up (fix #976) --- adminer/static/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/static/default.css b/adminer/static/default.css index 74397d50..1d9d4dd4 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -116,7 +116,7 @@ input.wayoff { left: -1000px; position: absolute; } @media all and (max-width: 880px) { .pages { left: auto; } .logout { padding: 1em; top: 3em; } - #menu { width: auto; background: var(--bg); border: 1px solid var(--fg); box-shadow: 0 0 20px rgb(from var(--fg) r g b / .7); } + #menu { width: auto; background: var(--bg); border: 1px solid var(--fg); margin-top: 9px; box-shadow: 0 0 20px rgb(from var(--fg) r g b / .7); } #content { margin-left: 10px; } #lang { position: static; } #breadcrumb { left: 48px; } -- 2.39.5