From 5f3a820571254ea89aef9e43e54fb4c14f9e37e7 Mon Sep 17 00:00:00 2001 From: Sebastian Butsch Date: Fri, 21 Feb 2025 16:35:51 +0100 Subject: [PATCH] Set body width to auto --- 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 54be43a4..d41cc981 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -1,5 +1,5 @@ /** @author Ondrej Valka, http://valka.info */ -body { color: #000; background: #fff; font: 90%/1.25 Verdana, Arial, Helvetica, sans-serif; margin: 0; width: fit-content; } +body { color: #000; background: #fff; font: 90%/1.25 Verdana, Arial, Helvetica, sans-serif; margin: 0; min-width: fit-content; } a { color: blue; text-decoration: none; } a:visited { color: navy; } a:link:hover, a:visited:hover { color: red; text-decoration: underline; }