Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
fix(layout): fix responsive breakpoint dead-zones
Browse files Browse the repository at this point in the history
closes #1549, references #772
  • Loading branch information
rschmukler committed Feb 18, 2015
1 parent fcc1e63 commit ecf6ede
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/style/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

// hide means hide everywhere
/* Sizes:
0 <= size <= 600 Phone
600 <= size <= 960 Tablet
960 <= size <= 1200 Tablet-Landscape
0 <= size < 600 Phone
600 <= size < 960 Tablet
960 <= size < 1200 Tablet-Landscape
1200 <= size PC
*/

Expand Down

3 comments on commit ecf6ede

@gkalpak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ehm...just changing a comment does not fix the issue 😄
The dead-zones (which are actually overlappings) are still there...

@thomasphan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gkalpak haha, it was fixed on the next commit.

@gkalpak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thx @thomasphan :)

For reference, the commit fixing the issue is dfeedb4.

Please sign in to comment.