From 4e6ad13eacaabf8dfe0a792e6a365a9ba0486097 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 23 Feb 2025 10:59:56 +0100 Subject: [PATCH] Move Logout button on narrow screens This avoids overlapping Logout and breadcrumb. The button also didn't display on far right due to width: fit-content. --- adminer/static/default.css | 1 + 1 file changed, 1 insertion(+) diff --git a/adminer/static/default.css b/adminer/static/default.css index 6164e5cb..095bb08c 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -96,6 +96,7 @@ input.wayoff { left: -1000px; position: absolute; } @media all and (max-width: 880px) { .pages { left: auto; } + .logout { position: static; padding: 0 1em; } #menu { position: static; width: auto; } #content { margin-left: 10px; } #lang { position: static; border-top: 1px solid #999; }