Blame view

ceres-uniapp-master/components/lb-picker/style/picker-item.scss 697 Bytes
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  .lb-picker-column {
    height: 34px;
    padding: 0 10px;
    /* #ifndef APP-NVUE */
    display: flex;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    /* #endif */
    flex-direction: row;
    align-items: center;
  }
  
  .lb-picker-column-label {
    font-size: 16px;
    text-align: center;
    flex: 1;
    /* #ifdef APP-NVUE */
    lines: 1;
    /* #endif */
    text-overflow: ellipsis;
    transition-property: color;
    transition-duration: 0.3s;
    /* #ifndef APP-NVUE */
    overflow: hidden;
    white-space: nowrap;
    /* #endif */
  }
  
  .lb-picker-column-label-left {
    text-align: left;
  }
  
  .lb-picker-column-label-center {
    text-align: center;
  }
  
  .lb-picker-column-label-right {
    text-align: right;
  }