mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
Merge branch 'master' into antd-3.0
This commit is contained in:
commit
81fc6d613c
@ -54,6 +54,7 @@
|
||||
}
|
||||
|
||||
&-text {
|
||||
word-break: normal;
|
||||
width: 2em;
|
||||
text-align: left;
|
||||
font-size: 1em;
|
||||
|
@ -451,7 +451,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
&-pagination {
|
||||
&-pagination.@{ant-prefix}-pagination {
|
||||
margin: 16px 0;
|
||||
float: right;
|
||||
}
|
||||
|
@ -21,6 +21,10 @@ const COLOR_MAP = {
|
||||
|
||||
const reducePlugin = postcss.plugin('reducePlugin', () => {
|
||||
const cleanRule = (rule) => {
|
||||
if (rule.selector.startsWith('.main-color .palatte-')) {
|
||||
rule.remove();
|
||||
return;
|
||||
}
|
||||
let removeRule = true;
|
||||
rule.walkDecls((decl) => {
|
||||
if (
|
||||
|
Loading…
Reference in New Issue
Block a user