css/layout-structure: fix broken columns

There is a border right now, changed box model to avoid influence on
container width
This commit is contained in:
Thomas Gelf 2014-11-14 21:45:39 +01:00
parent da47c7fc7e
commit 818ac35e22
1 changed files with 4 additions and 1 deletions

View File

@ -94,6 +94,9 @@ html {
/* tmp */
#main > .container {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100%;
height: 100%;
overflow: auto;
@ -101,7 +104,7 @@ html {
}
#layout.twocols #main > .container {
width: 49%;
width: 50%;
}