2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-02 16:04:07 +03:00

Adding media queries breakpoints variables

This commit is contained in:
Kevin
2013-04-27 18:47:47 +02:00
parent 8ae9c6ab34
commit 9ce7f22e99
10 changed files with 31 additions and 15 deletions
+17 -1
View File
@@ -369,6 +369,22 @@
@component-offset-horizontal: 180px;
// Media queries breakpoints
// --------------------------------------------------
// Tiny screen / phone
@screen-tiny: 480px;
@screen-phone: @screen-tiny;
// Small screen / tablet
@screen-small: 768px;
@screen-tablet: @screen-small;
// Medium screen / desktop
@screen-medium: 992px;
@screen-desktop: @screen-medium;
// Large screen / wide desktop
@screen-large: 1200px;
@screen-large-desktop: @screen-large;
// Grid system
// --------------------------------------------------
@@ -378,4 +394,4 @@
// Padding, to be divided by two and applied to the left and right of all columns
@grid-gutter-width: 30px;
// Point at which the navbar stops collapsing
@grid-float-breakpoint: 768px;
@grid-float-breakpoint: @screen-tablet;