amis2/scss
2020-12-21 10:16:25 +08:00
..
base SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
components fix: 修复编译报错 (#1216) 2020-12-21 10:16:25 +08:00
helper SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
layout SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
themes SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
_functions.scss css utilities 补充 2020-11-27 17:29:49 +08:00
_mixins.scss SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
_properties.scss SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
_utilities.scss SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
_variables.scss SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
helper.scss SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00
README.md SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190) 2020-12-21 10:08:40 +08:00

开发注意事项

目前 scss 里大量使用了 css 自定义变量,它和之前的 scss 变量明显不同,需要注意一下几点:

  • 目前依然有使用 scss 变量,因为有大量颜色计算,这些计算没法在自定义变量中使用,是所以目前是用两者结合的方式,想修改颜色最好的方式还是 scss 变量,但其他都能方便使用自定义变量修改,后续有可能基于 hsl 的方式来使得颜色也动态计算。
  • 负数需要使用 calc(var(--xxx) * -1)。
  • 在变量中使用需要用 #{},比如 --borderColorLight: #{lighten($borderColor, 5%)};
  • 在 Chrome 开发工具中点变量会没反应,是因为我们的变量太多了,得先在开发工具里点一下显示全部变量。