1234567891011121314151617181920212223242526272829303132333435363738 |
- @import '../../style/themes/index';
- @import '../../style/mixins/index';
- @divider-prefix-cls: ~'@{ant-prefix}-divider';
- .@{divider-prefix-cls} {
- &-rtl {
- direction: rtl;
- }
- &-horizontal&-with-text-left {
- &::before {
- .@{divider-prefix-cls}-rtl& {
- width: 100% - @divider-orientation-margin;
- }
- }
- &::after {
- .@{divider-prefix-cls}-rtl& {
- width: @divider-orientation-margin;
- }
- }
- }
- &-horizontal&-with-text-right {
- &::before {
- .@{divider-prefix-cls}-rtl& {
- width: @divider-orientation-margin;
- }
- }
- &::after {
- .@{divider-prefix-cls}-rtl& {
- width: 100% - @divider-orientation-margin;
- }
- }
- }
- }
|