mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
6936599aef
* rename .stylelintrc to .stylelintrc.json for explicit file type * add new npm script lint-fix:style * fix pseudo-element with double colon * function name should be lower except ignored functions * support stylelint declaration-block-no-ignored-properties rule * support sorted CSS properties order for readability and consistency * autofix order of all styles by lint-fix:style script * remove double slash comments after selector * replace .stylelintignore with ignoreFiles in .stylelintrc.json
14 lines
281 B
Plaintext
14 lines
281 B
Plaintext
@import '../themes/default';
|
|
|
|
.reset-component() {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: @text-color;
|
|
font-size: @font-size-base;
|
|
font-variant: @font-variant-base;
|
|
line-height: @line-height-base;
|
|
list-style: none;
|
|
font-feature-settings: 'tnum';
|
|
}
|