From 8bcd0ecff6ec9a8ce2737cc82ddbf398265e2a35 Mon Sep 17 00:00:00 2001 From: Jesse McDonald Date: Sat, 14 Mar 2020 17:20:41 -0500 Subject: [PATCH] remove extra left margin from vertical layout --- css/chess.css | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/css/chess.css b/css/chess.css index 18ce72c..4ef65d0 100644 --- a/css/chess.css +++ b/css/chess.css @@ -22,13 +22,6 @@ button:disabled .silhouette { flex-flow: row nowrap; } -/*@media only screen and (max-width: 8in) {*/ -@media only screen and (max-aspect-ratio: 4/3) { - #content { - flex-flow: column nowrap; - } -} - #cb_outer { width: 100%; max-width: calc(100vh - 4em); @@ -214,4 +207,15 @@ button:disabled .silhouette { cursor: default; } -/* vim:set expandtab sw=3 ts=8: */ +/*@media only screen and (max-width: 8in) {*/ +@media only screen and (max-aspect-ratio: 4/3) { + #content { + flex-flow: column nowrap; + } + + #cb_control_container { + margin-left: 0; + } +} + +/* vim: set expandtab sw=3 ts=8: */