mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-05 16:42:29 +03:00
Adding media queries breakpoints variables
This commit is contained in:
+3
-3
@@ -26,7 +26,7 @@
|
||||
.generate-small-grid-columns(@grid-columns);
|
||||
|
||||
// Responsive: Tablets and up
|
||||
@media screen and (min-width: 768px) {
|
||||
@media screen and (min-width: @screen-tablet) {
|
||||
.container {
|
||||
max-width: 728px;
|
||||
}
|
||||
@@ -38,14 +38,14 @@
|
||||
}
|
||||
|
||||
// Responsive: Desktops and up
|
||||
@media screen and (min-width: 992px) {
|
||||
@media screen and (min-width: @screen-desktop) {
|
||||
.container {
|
||||
max-width: 940px;
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive: Large desktops and up
|
||||
@media screen and (min-width: 1200px) {
|
||||
@media screen and (min-width: @screen-large-desktop) {
|
||||
.container {
|
||||
max-width: 1170px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user