classtocss_global.css 1.04 KB
/**
 * classToCSS插件自动生成的全局样式,任何手动修改都会被覆盖
 * 需要手动引入到全局生效的位置,如index.html
 */
.column { display: flex; flex-direction: column; }
.flex { display: flex; }
.inline { display: inline; }
.mid-between { justify-content: space-between; }
.mid-around { justify-content: space-around; }
.mid-evenly { justify-content: space-evenly; }
.space-around; { justify-content: space-around; }
.space-between; { justify-content: space-between; }
.table { display: table; }
.visible { visibility: visible; }
/* apply result */
.app-reset { padding:  0px; margin:  0px; box-sizing: content-box; }
.mid { display: flex;align-items: center; }
.center { display: flex;justify-content: center; }
.mid-center { display: flex;justify-content: center;align-items: center; }
.mid-between { display: flex;justify-content: space-between;align-items: center; }
.mid-around { display: flex;justify-content: space-around;align-items: center; }
.mid-evenly { display: flex;justify-content: space-evenly;align-items: center; }