-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from WebDevStudios/fix-breakpoint-tabs
Correct tabs
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dcbe017
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this list be in the reverse order?
$breakpoints: (
phone-portrait: 22.5em, // 360px
phone: 30em, // 480px
phone-landscape: 40em, // 640px
tablet-portrait: 48em, // 768px
tablet-landscape: 64em, // 1024px
desktop: 85.375em, // 1366px
large-desktop: 105em // 1680px
);
I notice it matters when I start to add my front-end display of the breakpoint. Not sure if anyone else has noticed any conflicts in this ordering or not.
Also, the last comma isn't necessary. Just an extra character :)
dcbe017
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, no experience with issues there.
I'm a fan of trailing comma, easy to re-order.