From d59caa23fc253ea3eefe6edadbf9fd892fc604a5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Tue, 16 Feb 2021 21:23:57 +0100 Subject: [PATCH] Fix overflow for mdr box (???) --- custom.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/custom.css b/custom.css index fad63ab7..7c74449e 100644 --- a/custom.css +++ b/custom.css @@ -1,13 +1,13 @@ .mdr { color:var(--sidebar-active); background-color:var(--sidebar-bg); - border: 5px solid var(--sidebar-fg); - padding: 10px; - margin-right: 20%; - margin-left: 20%; - moz-border-radius: 15px; - -webkit-border-radius: 15px; - overflow: scroll; + border: 1px solid var(--sidebar-fg); + padding: 1%; +// margin-right: 1%; +// margin-left: 1%; +// moz-border-radius: 1%; +// -webkit-border-radius: 1%; + overflow: auto; } footer { -- 2.43.0