first commit
This commit is contained in:
26
device.scss
Normal file
26
device.scss
Normal 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 */
|
||||
}
|
||||
Reference in New Issue
Block a user