index.less 854 Bytes
Newer Older
1 2 3 4 5
@root-entry-name: 'default';
@import '~antd/es/style/themes/index.less';

.video-carousel-modal {
  :global {
6 7 8 9
    .@{ant-prefix}-modal-body {
      position: relative;
      height: auto;
      padding: 0;
10 11 12
    }
  }

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
  .swiper-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;

    .swiper-title {
      flex: none;
      width: 100%;
      height: 40px;
      padding-left: 20px;
      color: #ffffff;
      line-height: 40px;
      background: #454545;
    }

    .swiper-content {
      flex: 1;
    }
31 32
  }

33 34 35 36 37
  .swiper-dots-wrap {
    position: absolute;
    bottom: 8px;
    left: 0;
    z-index: 1;
38 39
    display: flex;
    align-items: center;
40 41 42
    justify-content: center;
    width: 100%;
    height: 22px;
43

44 45 46 47 48 49
    .swiper-dots {
      width: 8px;
      height: 8px;
      background: #919090;
      border-radius: 50%;
    }
50 51
  }
}