uni.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 引入uView主题样式 */
  14. @import '@/uni_modules/uview-ui/theme.scss';
  15. /* 全局自定义scss变量 */
  16. /* 页面背景颜色 */
  17. $custom-bg-color: #ffffff;
  18. /* 边框样式 */
  19. $custom-border-style: 1rpx solid #f3f3f3;
  20. @mixin flex-left($direction: row) {
  21. display: flex;
  22. flex-direction: $direction;
  23. align-items: center;
  24. justify-content: left;
  25. }
  26. @mixin flex-right($direction: row) {
  27. display: flex;
  28. flex-direction: $direction;
  29. align-items: center;
  30. justify-content: right;
  31. }
  32. @mixin flex-center($direction: row) {
  33. display: flex;
  34. flex-direction: $direction;
  35. align-items: center;
  36. justify-content: center;
  37. }
  38. @mixin flex-space-between($direction: row) {
  39. display: flex;
  40. flex-direction: $direction;
  41. align-items: center;
  42. justify-content: space-between;
  43. }
  44. @mixin flex-space-around($direction: row) {
  45. display: flex;
  46. flex-direction: $direction;
  47. align-items: center;
  48. justify-content: space-around;
  49. }