🐛 Fix Table header text align when colspan=1 (#20463)

https://github.com/ant-design/ant-design/issues/20126#issuecomment-563307001
This commit is contained in:
偏右 2019-12-26 16:07:01 +08:00 committed by GitHub
parent 77dc5fa4e7
commit 2f72e472e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@
border-bottom: @border-width-base @border-style-base @border-color-split; border-bottom: @border-width-base @border-style-base @border-color-split;
transition: background 0.3s ease; transition: background 0.3s ease;
&[colspan] { &[colspan]:not([colspan='1']) {
text-align: center; text-align: center;
} }