amis2/scss/helper.scss
吴多益 33686a375e
SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190)
* 使用自定义 css 属性初步,支持大部分组件的展现

* button 大部分可以看了

* cxd 和 dark 大部分正常

* 修复一些细节样式错误;补充 css 变量的文档

* 修复几个脚本发现的错误

* 完善一下注释

* 修复一些样式不一致问题

* 修复可能存在的 css xss

* 恢复 font-variant 功能

* 修复绝大部分 @if 相关的问题

* 恢复之前的注释

* 修复小错误,并将所有 background-color 改成 background,这样就能设置渐变色

* 修复 button group 在 cxd 下不一致问题

* 缩小查看配置和复制配置的宽度,留出更多空间

* 修复一些潜在的错误

* 恢复 utilities 中 label 背景色的设置

* 修复错误的 css 变量

* 补充 IE11 Variables Polyfill
2020-12-21 10:08:40 +08:00

69 lines
2.2 KiB
SCSS

@import './functions';
@import './variables';
@import './mixins';
// background
@import './helper/background/background-color';
@import './helper/border/border-color';
@import './helper/border/border-radius';
@import './helper/border/border-width';
@import './helper/border/border-style';
@import './helper/layout/box-sizing';
@import './helper/layout/clear';
@import './helper/layout/display';
@import './helper/layout/float';
@import './helper/layout/overflow';
@import './helper/layout/position';
@import './helper/layout/top-right-bottom-left';
@import './helper/layout/visibility';
@import './helper/layout/z-index';
@import './helper/flex/direction';
@import './helper/flex/flex';
@import './helper/flex/grow';
@import './helper/flex/order';
@import './helper/flex/shrink';
@import './helper/flex/wrap';
@import './helper/grid/auto-columns';
@import './helper/grid/auto-flow';
@import './helper/grid/auto-rows';
@import './helper/grid/column-start-end';
@import './helper/grid/columns';
@import './helper/grid/gap';
@import './helper/grid/row-start-end';
@import './helper/grid/rows';
@import './helper/box-alignment/align-content';
@import './helper/box-alignment/align-items';
@import './helper/box-alignment/align-self';
@import './helper/box-alignment/justify-content';
@import './helper/box-alignment/justify-items';
@import './helper/box-alignment/justify-self';
@import './helper/box-alignment/place-content';
@import './helper/box-alignment/place-items';
@import './helper/box-alignment/place-self';
@import './helper/effect/box-shadow';
@import './helper/spacing/margin';
@import './helper/spacing/padding';
@import './helper/spacing/space-between';
@import './helper/sizing/width';
@import './helper/sizing/height';
@import './helper/typography/font-size';
@import './helper/typography/font-style';
@import './helper/typography/font-weight';
@import './helper/typography/line-height';
@import './helper/typography/list-style-type';
@import './helper/typography/text-align';
@import './helper/typography/text-color';
@import './helper/typography/text-decoration';
@import './helper/typography/text-transform';
@import './helper/typography/whitespace';
@import './helper/typography/word-break';