ant-design-blazor/components/statistic/style/index.less

41 lines
682 B
Plaintext
Raw Normal View History

@import '../../style/themes/index';
@import '../../style/mixins/index';
@statistic-prefix-cls: ~'@{ant-prefix}-statistic';
.@{statistic-prefix-cls} {
2021-01-09 09:07:02 +08:00
.reset-component();
&-title {
2020-03-30 09:53:10 +08:00
margin-bottom: @margin-xss;
color: @text-color-secondary;
font-size: @statistic-title-font-size;
}
&-content {
color: @heading-color;
font-size: @statistic-content-font-size;
font-family: @statistic-font-family;
&-value {
2020-04-26 10:41:53 +08:00
display: inline-block;
direction: ltr;
}
&-prefix,
&-suffix {
display: inline-block;
}
&-prefix {
margin-right: 4px;
}
&-suffix {
margin-left: 4px;
}
}
}
2020-03-23 13:51:37 +08:00
@import './rtl';