Commit 16ed4974 by Louis Pilfold

Use box-sizing SCSS mixin rather than property

parent 01d9a6de
...@@ -107,7 +107,7 @@ a:focus { ...@@ -107,7 +107,7 @@ a:focus {
.container { .container {
@include clearfix; @include clearfix;
box-sizing: border-box; @include box-sizing(border-box);
margin: 0 auto 0; margin: 0 auto 0;
padding: 0px 30px; padding: 0px 30px;
max-width: grid-width(12); max-width: grid-width(12);
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
footer { footer {
@include clearfix(); @include clearfix();
box-sizing: border-box; @include box-sizing(border-box);
max-width: grid-width(12); max-width: grid-width(12);
min-width: 760px; min-width: 760px;
width: flex-grid(12); width: flex-grid(12);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment