-
Notifications
You must be signed in to change notification settings - Fork 84
Description
why do we have this on line 305:
.site-sidebar-first .block.well {
width: calc(50% - 60px);
}
When we really just need to add box-sizing: border-box; to those blocks:
.site-sidebar-first .block, .site-sidebar-second .block {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
or add that class to line 298 to all these selectors (below) perhaps? Would this break the way we are defining responsive widths?
.main-top .block[class_="span"], .main-upper .block[class_="span"], .main-lower .block[class_="span"], .main-bottom .block[class_="span"], .content-top .block[class_="span"], .content-upper .block[class_="span"], .content-body .block[class_="span"], .content-lower .block[class_="span"], .content-bottom .block[class*="span"], .content-row2 .span6, .content-col2.row-fluid .span6, .content-row3 .span4, .content-col3.row-fluid .span4, .content-row4 .span3, .content-col4.row-fluid .span3, .site-sidebar-first .block, .site-sidebar-second .block