classtocss_global.css 896 B

123456789101112131415161718
  1. /**
  2. * classToCSS插件自动生成的全局样式,任何手动修改都会被覆盖
  3. * 需要手动引入到全局生效的位置,如index.html
  4. */
  5. .frBg { float: right; }
  6. .frColor { float: right; }
  7. .mid-between { justify-content: space-between; }
  8. .mid-around { justify-content: space-around; }
  9. .mid-evenly { justify-content: space-evenly; }
  10. .table { display: table; }
  11. /* apply result */
  12. .app-reset { padding: 0px; margin: 0px; box-sizing: content-box; }
  13. .mid { display: flex; align-items: center; }
  14. .center { display: flex; justify-content: center; }
  15. .mid-center { display: flex; justify-content: center; align-items: center; }
  16. .mid-between { display: flex; justify-content: space-between; align-items: center; }
  17. .mid-around { display: flex; justify-content: space-around; align-items: center; }
  18. .mid-evenly { display: flex; justify-content: space-evenly; align-items: center; }