Commit a06a35d2 authored by Mark Otto's avatar Mark Otto

Drop: Device-named container variables since we alreay sort of deprecated them many releases ago

parent 74ac24aa
......@@ -756,17 +756,17 @@ pre code {
}
@media (min-width: 768px) {
.container {
width: 750px;
width: 720px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
width: 940px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
width: 1140px;
}
}
.container-fluid {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -756,17 +756,17 @@ pre code {
}
@media (min-width: 768px) {
.container {
width: 750px;
width: 720px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
width: 940px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
width: 1140px;
}
}
.container-fluid {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -283,20 +283,14 @@
//
//## Define the maximum width of `.container` for different screen sizes.
// Small screen / tablet
@container-tablet: ((720px + @grid-gutter-width));
//** For `@screen-sm-min` and up.
@container-sm: @container-tablet;
@container-sm: 720px;
// Medium screen / desktop
@container-desktop: ((940px + @grid-gutter-width));
//** For `@screen-md-min` and up.
@container-md: @container-desktop;
@container-md: 940px;
// Large screen / wide desktop
@container-large-desktop: ((1140px + @grid-gutter-width));
//** For `@screen-lg-min` and up.
@container-lg: @container-large-desktop;
@container-lg: 1140px;
//== Navbar
......
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