From 0497369765b041ef66e8c97f57eb2d0af789c7d2 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Sun, 12 Apr 2015 11:43:07 -0400 Subject: [PATCH] prevent overflow on #content --- less/style.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/less/style.less b/less/style.less index 1887232..6c0e42b 100644 --- a/less/style.less +++ b/less/style.less @@ -51,7 +51,9 @@ a:hover, .btn-link:hover, .btn-link:active, .btn-link:focus { word-wrap: break-word; } -#content{ +#content { + overflow: hidden; + padding-bottom:20px; -webkit-transition: opacity 100ms linear; -moz-transition: opacity 100ms linear;