mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-05 03:33:23 +01:00
22 lines
576 B
Plaintext
22 lines
576 B
Plaintext
|
// IMPORTS
|
||
|
@import "base.less";
|
||
|
|
||
|
|
||
|
// MOBILE
|
||
|
@media only screen and (max-width: 480px),
|
||
|
only screen and (max-width: 720px) and (min-device-pixel-ratio : 1.5),
|
||
|
only screen and (max-width: 720px) and (-webkit-min-device-pixel-ratio : 1.5) {
|
||
|
@import "mobile.less";
|
||
|
}
|
||
|
|
||
|
// FULL
|
||
|
@media only screen and (min-width: 1000px) and (max-device-pixel-ratio : 1.5),
|
||
|
only screen and (min-width: 1000px) and (-webkit-max-device-pixel-ratio : 1.5) {
|
||
|
@import "full.less";
|
||
|
}
|
||
|
|
||
|
// PORTRAIT
|
||
|
@media only screen and (orientation:portrait) {
|
||
|
@import "portrait.less";
|
||
|
}
|