From 4788005e0e96d01a023b49bce552a0fe629d37f3 Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 23 Feb 2018 17:33:45 +0100 Subject: [PATCH] Fix settings menu displaying errors --- style.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index b81bf40..70b07dd 100644 --- a/style.css +++ b/style.css @@ -45,12 +45,15 @@ body { } #menu-content { - position: fixed; + position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: .6em; - width: 20%; + width: 375px; + max-width: 100%; + max-height: 90%; + overflow: auto; } #menu-content > * { @@ -58,6 +61,10 @@ body { border-bottom: 1px solid #444; } +#menu-content > *:last-child { + border: none; +} + #menu-content h3 { margin: 0 0 15px; }