pranavSIT's picture
added pali inference
74e8f2f
raw
history blame contribute delete
216 Bytes
// 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;
}
}