Commit a5da61b4 by AlasdairSwan

ECOM-408 Added breakpoint variables to _grid-settings.scss

parent 93246db6
/* Override the default global box-sizing */
$border-box-sizing: false;
\ No newline at end of file
@import "neat/neat-helpers"; // or "neat-helpers" when in Rails
$border-box-sizing: false;
/* Breakpoints */
$mobile: new-breakpoint(max-width 320px 4);
$tablet: new-breakpoint(min-width 321px max-width 768px, 8);
$desktop: new-breakpoint(min-width 769px 12);
\ No newline at end of file
......@@ -3,8 +3,9 @@
.login-register {
@include box-sizing(border-box);
@include span-columns(6);
@include shift(3);
@include span-columns(4);
width: 100%;
max-width: 1200px;
/* Temp. fix until applied globally */
& > {
......@@ -81,10 +82,18 @@
display: inline;
}
@include media( $tablet ) {
@include span-columns(6);
@include shift(1);
}
@include media( $desktop ) {
@include span-columns(6);
@include shift(3);
}
}
/*// individual fields
.field {
......
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