123456789101112131415161718 |
- /**
- * classToCSS插件自动生成的全局样式,任何手动修改都会被覆盖
- * 需要手动引入到全局生效的位置,如index.html
- */
- .frBg { float: right; }
- .frColor { float: right; }
- .mid-between { justify-content: space-between; }
- .mid-around { justify-content: space-around; }
- .mid-evenly { justify-content: space-evenly; }
- .table { display: table; }
- /* 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; }
|