diff options
| author | Mark Otto <[email protected]> | 2014-07-08 02:55:07 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-08 02:55:07 -0700 |
| commit | a06a35d27a25caf8cdebb6b718c0dfe335142703 (patch) | |
| tree | 401e59c2d925353927f57a71b6ed14434d40870b /less | |
| parent | 74ac24aa595711edbf72e1c3625d939739f0808f (diff) | |
| download | bootstrap-a06a35d27a25caf8cdebb6b718c0dfe335142703.tar.xz bootstrap-a06a35d27a25caf8cdebb6b718c0dfe335142703.zip | |
Drop: Device-named container variables since we alreay sort of deprecated them many releases ago
Diffstat (limited to 'less')
| -rw-r--r-- | less/variables.less | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/less/variables.less b/less/variables.less index 6225b25b2..877ebc01e 100644 --- a/less/variables.less +++ b/less/variables.less @@ -269,34 +269,28 @@ //## Define your custom responsive grid. //** Number of columns in the grid. -@grid-columns: 12; +@grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. -@grid-gutter-width: 30px; +@grid-gutter-width: 30px; // Navbar collapse //** Point at which the navbar becomes uncollapsed. -@grid-float-breakpoint: @screen-sm-min; +@grid-float-breakpoint: @screen-sm-min; //** Point at which the navbar begins collapsing. -@grid-float-breakpoint-max: (@grid-float-breakpoint - 1); +@grid-float-breakpoint-max: (@grid-float-breakpoint - 1); //== Container sizes // //## 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 |
