first commit

This commit is contained in:
luk.lu
2021-07-14 10:36:43 +08:00
commit 1ea34121d1
3 changed files with 106 additions and 0 deletions

26
device.scss Normal file
View File

@@ -0,0 +1,26 @@
/**
* 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 */
}