Skip to content

Commit

Permalink
Updated viewport widths (hackforla#4796)
Browse files Browse the repository at this point in the history
  • Loading branch information
one2code authored and blulady committed Jun 18, 2023
1 parent 0b0f1aa commit bd40b52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _sass/variables/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ $screen-mobile: 480px;
* anything below a tablet, use $bp-below-tablet.
*/
$bp-desktop-large-up: '(min-width: #{$screen-desktop-large})';
$bp-below-desktop-large: '(max-width: #{$screen-desktop-large - 1})';
$bp-below-desktop-large: '(max-width: #{$screen-desktop-large - .02})';
$bp-desktop-up: '(min-width: #{$screen-desktop})';
$bp-below-desktop: '(max-width: #{$screen-desktop - 1})';
$bp-below-desktop: '(max-width: #{$screen-desktop - .02})';
$bp-tablet-up: '(min-width: #{$screen-tablet})';
$bp-below-tablet: '(max-width: #{$screen-tablet - 1})';
$bp-below-tablet: '(max-width: #{$screen-tablet - .02})';
$bp-mobile-up: '(min-width: #{$screen-mobile})';
$bp-below-mobile: '(max-width: #{$screen-mobile - 1})';
$bp-below-mobile: '(max-width: #{$screen-mobile - .02})';

/**
* Magic Numbers
Expand Down

0 comments on commit bd40b52

Please sign in to comment.