mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 01:13:58 +08:00
🐛 fix progress text align issue (#14024)
* 🐛 fix progress text align issue close #13997 * ✅ Set thresholds for codecov build failures
This commit is contained in:
parent
75bfd13295
commit
bb77436b36
@ -2,5 +2,8 @@ codecov:
|
||||
branch: master
|
||||
|
||||
coverage:
|
||||
precision: 1
|
||||
round: down
|
||||
status:
|
||||
project:
|
||||
default:
|
||||
# Fail the status if coverage drops by >= 0.1%
|
||||
threshold: 0.1
|
||||
|
@ -123,18 +123,17 @@
|
||||
}
|
||||
|
||||
&-circle &-text {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 1;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
left: 0;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: @progress-text-color;
|
||||
white-space: normal;
|
||||
padding: 0 6px;
|
||||
|
||||
.@{iconfont-css-prefix} {
|
||||
font-size: 14 / 12em;
|
||||
|
Loading…
Reference in New Issue
Block a user