Fix for annoying overflow scroll issues caused by facebook and twitter share/follow widgets.

This commit is contained in:
Brandon Mathis
2012-01-08 19:54:17 -06:00
parent f99234b10e
commit 930747f06f
3 changed files with 8 additions and 1 deletions

View File

@ -89,7 +89,10 @@ body {
}
}
#content { > div, > article { width: 100%; }}
#content {
overflow: hidden;
> div, > article { width: 100%; }
}
aside.sidebar {
float: none;
@ -134,6 +137,7 @@ body.sidebar-footer {
}
#content {
@extend .group;
overflow: visible;
margin-right: $sidebar-width-medium;
position: relative;
.no-sidebar & { margin-right: 0; border-right: 0; }