Commit 9c0d04d3 authored by Mark Otto's avatar Mark Otto

Merge pull request #10569 from ZDroid/patch-2

Change @screen-* to @screen-*-min
parents fc929311 50fcaba2
......@@ -190,7 +190,7 @@
// Scale up controls for tablets and up
@media screen and (min-width: @screen-sm) {
@media screen and (min-width: @screen-sm-min) {
// Scale up the controls a smidge
.carousel-control {
......
......@@ -114,7 +114,7 @@
// Note that `.col-sm-12` doesn't get floated on purpose--there's no need since
// it's full-width.
@media (min-width: @screen-sm) {
@media (min-width: @screen-sm-min) {
.container {
width: @container-sm;
}
......@@ -192,7 +192,7 @@
// Note that `.col-md-12` doesn't get floated on purpose--there's no need since
// it's full-width.
@media (min-width: @screen-md) {
@media (min-width: @screen-md-min) {
.container {
width: @container-md;
}
......
......@@ -24,7 +24,7 @@
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}
@media screen and (min-width: @screen-sm) {
@media screen and (min-width: @screen-sm-min) {
padding-top: (@jumbotron-padding * 1.6);
padding-bottom: (@jumbotron-padding * 1.6);
......
......@@ -125,7 +125,7 @@
}
// Scale up the modal
@media screen and (min-width: @screen-sm) {
@media screen and (min-width: @screen-sm-min) {
.modal-dialog {
width: 600px;
......
......@@ -15,7 +15,7 @@ p {
font-weight: 200;
line-height: 1.4;
@media (min-width: @screen-sm) {
@media (min-width: @screen-sm-min) {
font-size: (@font-size-base * 1.5);
}
}
......
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