Commit ea59c3c3 authored by Mark Otto's avatar Mark Otto

Drop: @screen-table, @screen-desktop, @screen-lg-desktop, @screen-sm, @screen-md, @screen-lg

parent d84fce72
...@@ -258,35 +258,21 @@ ...@@ -258,35 +258,21 @@
//== Media queries breakpoints //== Media queries breakpoints
// //
//## Define the breakpoints at which your layout will change, adapting to different screen sizes. //## Define the minimum and maximum dimensions at which your layout will change, adapting to different screen sizes.
// Extra small screen / phone // Extra small screen / phone
@screen-xs-max: (@screen-sm-min - 1);
// Small screen / tablet // Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1 @screen-sm-min: 768px;
@screen-sm: 768px; @screen-sm-max: (@screen-md-min - 1);
@screen-sm-min: @screen-sm;
//** Deprecated `@screen-tablet` as of v3.0.1
@screen-tablet: @screen-sm-min;
// Medium screen / desktop // Medium screen / desktop
//** Deprecated `@screen-md` as of v3.0.1 @screen-md-min: 992px;
@screen-md: 992px; @screen-md-max: (@screen-lg-min - 1);
@screen-md-min: @screen-md;
//** Deprecated `@screen-desktop` as of v3.0.1
@screen-desktop: @screen-md-min;
// Large screen / wide desktop // Large screen / wide desktop
//** Deprecated `@screen-lg` as of v3.0.1 @screen-lg-min: 1200px;
@screen-lg: 1200px;
@screen-lg-min: @screen-lg;
//** Deprecated `@screen-lg-desktop` as of v3.0.1
@screen-lg-desktop: @screen-lg-min;
// So media queries don't overlap when required, provide a maximum
@screen-xs-max: (@screen-sm-min - 1);
@screen-sm-max: (@screen-md-min - 1);
@screen-md-max: (@screen-lg-min - 1);
//== Grid system //== Grid system
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment