rtl.less 287 B

1234567891011121314151617181920
  1. .@{splitter-prefix-cls} {
  2. &-rtl {
  3. direction: rtl;
  4. }
  5. &-dot {
  6. &-spin {
  7. .@{splitter-prefix-cls}-rtl & {
  8. transform: rotate(-45deg);
  9. animation-name: antRotateRtl;
  10. }
  11. }
  12. }
  13. }
  14. @keyframes antRotateRtl {
  15. to {
  16. transform: rotate(-405deg);
  17. }
  18. }