From 17a63fc58c487a616e1d844e0bb2ad08e1afd2fc Mon Sep 17 00:00:00 2001 From: Jessica Cheng <31293603+JessicaLucindaCheng@users.noreply.github.com> Date: Tue, 8 Feb 2022 18:34:27 -0800 Subject: [PATCH] Revert "Removed comments unrelated to pr 2672 from variables/_layout.scss (#2724)" This reverts commit 3bc8d503e2d0a19b3a27b8a8196db2309088ea8a. --- _sass/variables/_layout.scss | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/_sass/variables/_layout.scss b/_sass/variables/_layout.scss index 5a63eb6b50..91ce219c4f 100644 --- a/_sass/variables/_layout.scss +++ b/_sass/variables/_layout.scss @@ -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})';