From 429de1954fe230b30f5869b91b6f0caf697a99e4 Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Tue, 1 Oct 2013 12:00:47 -0300 Subject: [PATCH] Fix for issue #44 with large font size When using large font it will overflow the width so I add max-width in the css. --- swc.css | 1 + 1 file changed, 1 insertion(+) diff --git a/swc.css b/swc.css index 59bab5a..cd7acb5 100644 --- a/swc.css +++ b/swc.css @@ -122,6 +122,7 @@ div.box { @media (min-width: 700px) { div.box { width: 54em; + max-width: 80%; } }