2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

Adding variables for container sizes

This commit is contained in:
Aristeides Stathopoulos
2013-05-27 23:00:39 +03:00
parent 2b088ef44e
commit 6fda25b4c1
2 changed files with 16 additions and 3 deletions
+3 -3
View File
@@ -39,21 +39,21 @@
// Responsive: Tablets and up
@media screen and (min-width: @screen-tablet) {
.container {
max-width: (@screen-tablet - 40);
max-width: @container-tablet;
}
}
// Responsive: Desktops and up
@media screen and (min-width: @screen-desktop) {
.container {
max-width: (@screen-desktop - 52);
max-width: @container-desktop;
}
}
// Responsive: Large desktops and up
@media screen and (min-width: @screen-large-desktop) {
.container {
max-width: (@screen-large-desktop - @grid-gutter-width);
max-width: @container-large-desktop;
}
}