Skip to content

Commit

Permalink
Removed comments unrelated to pr 2672 from variables/_layout.scss (ha…
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaLucindaCheng authored and SAUMILDHANKAR committed Feb 6, 2022
1 parent 9b97a8b commit 3bc8d50
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions _sass/variables/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,16 @@ $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 3bc8d50

Please sign in to comment.