File size: 216 Bytes
74e8f2f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
// Useful mixins.

// To wrap styles that should only trigger for phones in portrait mode.
@mixin phone-portrait {
  @media only screen and (max-device-width: 800px) and (orientation: portrait) {
    @content;
  }
}