From 0e632bdaa191b4efc63fbb70028b50cd2e426b07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erick=20Madrigal=20R=C3=ADos?= Date: Sat, 16 Apr 2016 01:14:19 -0600 Subject: [PATCH] Update style.css Responsive design is currently broken when the width is between 768px and 850px, because the width of inner class is set fixed at 850px --- themes/default/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/themes/default/style.css b/themes/default/style.css index eec79e0..fb012a6 100644 --- a/themes/default/style.css +++ b/themes/default/style.css @@ -214,7 +214,8 @@ dd { /* Structure Styles /*---------------------------------------------*/ .inner { - width: 850px; + width: 100%; + max-width: 850px; margin: 0 auto; }