mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
e13c4d4131
* chore: create additional entry * fix: rm recv call * chore: Add default.less as index.less * chore: update entry * fix: row should also translate * chore: rename index-default to index and add index-pure instead * fix: missing transfer customize styl
43 lines
871 B
Plaintext
43 lines
871 B
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@tab-prefix-cls: ~'@{ant-prefix}-tabs';
|
|
|
|
.@{tab-prefix-cls} {
|
|
&-small {
|
|
> .@{tab-prefix-cls}-nav {
|
|
.@{tab-prefix-cls}-tab {
|
|
padding: @tabs-horizontal-padding-sm;
|
|
font-size: @tabs-title-font-size-sm;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-large {
|
|
> .@{tab-prefix-cls}-nav {
|
|
.@{tab-prefix-cls}-tab {
|
|
padding: @tabs-horizontal-padding-lg;
|
|
font-size: @tabs-title-font-size-lg;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-card {
|
|
&.@{tab-prefix-cls}-small {
|
|
> .@{tab-prefix-cls}-nav {
|
|
.@{tab-prefix-cls}-tab {
|
|
padding: @tabs-card-horizontal-padding-sm;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.@{tab-prefix-cls}-large {
|
|
> .@{tab-prefix-cls}-nav {
|
|
.@{tab-prefix-cls}-tab {
|
|
padding: @tabs-card-horizontal-padding-lg;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|