File "rtl.scss"

Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/css/template/default/object/modifiers/rtl.scss
File size: 399 B (399 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

$arrow-right: 1em !default;
$arrow-left: 1em !default;

.splide {
  $root: &;

  &__arrows--rtl {
    #{ $root }__arrow {
      &--prev {
        left: auto;
        right: $arrow-right;

        svg {
          transform: scaleX( 1 );
        }
      }

      &--next {
        left: $arrow-left;
        right: auto;

        svg {
          transform: scaleX( -1 );
        }
      }
    }
  }
}