[Mobile] Fix for emu and act
Adds 2 landscape conditions for tablets and phones to check if they are in landscape, in the actual tablet, or in an emulate of the tablet, then it displays.
This commit is contained in:
@@ -23,14 +23,16 @@
|
||||
// NOTE: Mixins for devices
|
||||
@mixin phone {
|
||||
@media #{$phoneWidth},
|
||||
#{$phoneHeight} {
|
||||
#{$phoneHeight},
|
||||
#{$phoneHeightEmu}{
|
||||
@content
|
||||
}
|
||||
}
|
||||
|
||||
@mixin tablet {
|
||||
@media #{$tabletWidth},
|
||||
#{$tabletHeight} {
|
||||
#{$tabletHeight},
|
||||
#{$tabletHeightEmu}{
|
||||
@content
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user