-2

I recently found this answer on SO, and was wondering if there is a syntax to accomplish this with breakpoint-sass plugin? Thanks.

EDIT (since there was confusion):

Have a breakpoint dependent on height and width, similar to this media query from the posted question.

@media screen and (max-width: 995px) , screen and (max-height: 700px) {
  ...
}
Community
  • 1
  • 1
Alex
  • 1,100
  • 1
  • 9
  • 23
  • 2
    This question wound up in the low quality review queue. I think it would be OK if edited to include a snippet and explain what you mean by "accomplish this" because readers are kind of expecting that upfront even though the other SO question is fairly short. – Paul Sep 22 '14 at 16:04

1 Answers1

1

Breakpoint allows for media breakpoint and or breakpoints, so constructing this MQ is fairly straight forward:

http://sassmeister.com/gist/3b7127ded8e032d90f4d

Snugug
  • 2,358
  • 1
  • 16
  • 18