If you read the doc for ZURB Foundaiton 6 Media Queries you find out that there are some changes compared to ZURB Foundation 5. I have few questions about new features because I don't understand reasons which led to change.
1) breakpoint
mixin, down direction instead of up
- This leads to hard time during migration from version 5 to version 6. Why is there no option to keep using also the up direction?
- What was the reason to change direction from up to down? It is still very common to see styles which are different only for small devices, medium and large devices use the same style (e.g. menu). Again, I don't understand why there is no option to choose between key words up and down.
- Which direction is better in terms of mobile first design approach? Are these changes connected with this in some way?
2) MediaQuery.atLeast
function, inconsistency in direction
- This function tells you if the screen has some size or is larger than this size. This is completely reverse behavior than has the
breakpoint
mixin (with the down keyword). Why the behavior isn't the same or why we don't have any option of choice?