wo-user-style-scss/device.scss
2021-07-14 10:36:43 +08:00

27 lines
450 B
SCSS

/**
* Unified Theme
* 通用个性化主题
*/
@mixin _PHONE {
/* #ifdef H5 */
@media screen and (min-width: 0px) and (max-width: 750px) {
@content;
}
/* #endif */
}
@mixin _PAD {
/* #ifdef H5 */
@media screen and (min-width: 751px) and (max-width: 1024px) {
@content;
}
/* #endif */
}
@mixin _DESK {
/* #ifdef H5 */
@media screen and (min-width: 751px) {
@content;
}
/* #endif */
}