rosa-build/app/stylesheets/partials/_media.scss

21 lines
504 B
SCSS

//
// These are in their own partial because you probably
// want to customize on a per-site basis
//
@media print {
@include media-print;
}
@media all and (orientation:portrait) {
// Style adjustments for portrait mode goes here
}
@media all and (orientation:landscape) {
// Style adjustments for landscape mode goes here
}
@media screen and (max-device-width: 480px) {
// Pass in false if you don't want iOS and WinMobile to mobile-optimize the text for you
@include media-mobile(true);
}