Skip to content

Commit

Permalink
updated variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyTheTank committed Feb 26, 2016
1 parent 703f041 commit 4040d45
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions src/_bootstrap.gridblock.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
.block-grid-xs-12 > *:nth-of-type(12n+1) {
clear: both;
}
@media (min-width: $min-sm) {
@media (min-width: $screen-sm-min) {
.block-grid-sm-1 > * {
width: 100%;
}
Expand Down Expand Up @@ -241,7 +241,7 @@
clear: both;
}
}
@media (min-width: $min-md) {
@media (min-width: $screen-md-min) {
.block-grid-md-1 > * {
width: 100%;
}
Expand Down Expand Up @@ -351,7 +351,7 @@
clear: both;
}
}
@media (min-width: $min-lg) {
@media (min-width: $screen-lg-min) {
.block-grid-lg-1 > * {
width: 100%;
}
Expand Down
12 changes: 6 additions & 6 deletions src/_bootstrap3.breakpoints.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
$max-xs: 767px;
$screen-xs-max: 767px;

$min-sm: $max-xs+1;
$max-sm: 991px;
$screen-sm-min: $screen-xs-max+1;
$screen-sm-max: 991px;

$min-md: $max-sm+1;
$max-md: 1199px;
$screen-md-min: $screen-sm-max+1;
$screen-md-max: 1199px;

$min-lg: $max-md+1;
$screen-lg-min: $screen-md-max+1;
12 changes: 6 additions & 6 deletions src/_bootstrap4.breakpoints.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
$max-xs: 33.9em;
$screen-xs-max: 33.9em;

$min-sm: 34em;
$max-sm: 47.9em;
$screen-sm-min: 34em;
$screen-sm-max: 47.9em;

$min-md: 48em;
$max-md: 61.9em;
$screen-md-min: 48em;
$screen-md-max: 61.9em;

$min-lg: 62em;
$screen-lg-min: 62em;

0 comments on commit 4040d45

Please sign in to comment.