classtocss_apply.css 845 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * classToCSS插件生成的apply样式文件
  3. * 将会自动编译至classtocss_global.css文件中
  4. * 根据需要自行编辑,不会被覆盖
  5. */
  6. /* 预设重置样式代码 */
  7. .app-reset {
  8. @apply .p-0 .m-0 .content-box;
  9. }
  10. /* 预设垂直居中(flex) */
  11. .mid {
  12. @apply .flex .items-center;
  13. }
  14. /* 预设水平居中(flex) */
  15. .center {
  16. @apply .flex .justify-center;
  17. }
  18. /* 预设水平垂直居中(flex) */
  19. .mid-center {
  20. @apply .flex .justify-center .items-center;
  21. }
  22. /* 预设水平两端对齐、垂直居中(flex) */
  23. .mid-between {
  24. @apply .flex .justify-between .items-center;
  25. }
  26. /* 预设水平平均分布、垂直居中(flex) */
  27. .mid-around {
  28. @apply .flex .justify-around .items-center;
  29. }
  30. /* 预设水平平均分布、垂直居中(flex) */
  31. .mid-evenly {
  32. @apply .flex .justify-evenly .items-center;
  33. }