Skip to content

Commit

Permalink
Revert "Removed comments unrelated to pr 2672 from variables/_layout.…
Browse files Browse the repository at this point in the history
…scss (#2724)"

This reverts commit 3bc8d50.
  • Loading branch information
JessicaLucindaCheng authored and SAUMILDHANKAR committed Feb 9, 2022
1 parent 4bc2868 commit 17a63fc
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions _sass/variables/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,24 @@ $screen-mobile: 480px;
* Breakpoint Start and End Declaration
*
* These are generally used for declaring media queries.
* As an example, if a developer wants to make a media query for
* anything above a tablet, use the variable $bp-tablet-up. For
* As an example, if a developer wants to make a media query for
* anything above a tablet, use the variable $bp-tablet-up. For
* anything below a tablet, use $bp-below-tablet.
*/

// Desktop Large
$bp-desktop-large-up: '(min-width: #{$screen-desktop-large})';
$bp-below-desktop-large: '(max-width: #{$screen-desktop-large - 1})';

// Desktop
$bp-desktop-up: '(min-width: #{$screen-desktop})';
$bp-below-desktop: '(max-width: #{$screen-desktop - 1})';

// Tablets
$bp-tablet-up: '(min-width: #{$screen-tablet})';
$bp-below-tablet: '(max-width: #{$screen-tablet - 1})';

// Mobile
$bp-mobile-up: '(min-width: #{$screen-mobile})';
$bp-below-mobile: '(max-width: #{$screen-mobile - 1})';

Expand Down

0 comments on commit 17a63fc

Please sign in to comment.