2021-12-15 15:34:31 +08:00
|
|
|
import * as style from "./style.module.css";
|
2021-12-17 03:42:44 +08:00
|
|
|
import { local1, local2, local3, local4, ident } from "./style.module.css";
|
2021-12-15 15:34:31 +08:00
|
|
|
|
|
|
|
export default {
|
2021-12-15 16:03:06 +08:00
|
|
|
global: style.global,
|
2021-12-15 15:34:31 +08:00
|
|
|
class: style.class,
|
2021-12-15 16:03:06 +08:00
|
|
|
local: `${local1} ${local2} ${local3} ${local4}`,
|
|
|
|
local2: `${style.local5} ${style.local6}`,
|
2021-12-17 03:42:44 +08:00
|
|
|
nested: `${style.nested1} ${style.nested2} ${style.nested3}`,
|
|
|
|
ident,
|
|
|
|
keyframes: style.localkeyframes,
|
|
|
|
animation: style.animation,
|
2022-04-14 23:33:00 +08:00
|
|
|
vars: `${style["local-color"]} ${style.vars} ${style["global-color"]} ${style.globalVars}`,
|
|
|
|
media: style.wideScreenClass,
|
|
|
|
supports: style.displayGridInSupports,
|
2021-12-15 15:34:31 +08:00
|
|
|
};
|