2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Deprecate container-{device} vars for container-{size} classes; updates customizer and grid to do the same

This commit is contained in:
Mark Otto
2013-08-24 14:00:52 -07:00
parent c0b00f22fe
commit 5491d53b99
3 changed files with 16 additions and 13 deletions
+6 -3
View File
@@ -626,10 +626,13 @@
// --------------------------------------------------
// Small screen / tablet
@container-tablet: ((720px + @grid-gutter-width));
@container-sm: ((720px + @grid-gutter-width));
@container-tablet: @container-sm;
// Medium screen / desktop
@container-desktop: ((940px + @grid-gutter-width));
@container-md: ((940px + @grid-gutter-width));
@container-desktop: @container-md;
// Large screen / wide desktop
@container-lg-desktop: ((1140px + @grid-gutter-width));
@container-lg: ((1140px + @grid-gutter-width));
@container-large-desktop: @container-lg;