Blame view

src/styles/components/carousel.less 301 Bytes
6c9acb08   Rijn   initialize carousel
1
2
3
4
  @carousel-prefix-cls: ~"@{css-prefix}carousel";
  @carousel-item-prefix-cls: ~"@{css-prefix}carousel-item";
  
  .@{carousel-prefix-cls} {
41f83010   Rijn   update props and ...
5
6
7
8
9
10
      position: relative;
      display: block;
      box-sizing: border-box;
      user-select: none;
      touch-action: pan-y;
      -webkit-tap-highlight-color: transparent;
6c9acb08   Rijn   initialize carousel
11
  }