1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| .t-class-cell {
| background-color: var(--td-gray-color-1) !important;
| --td-cell-title-color: var(--td-font-gray-3)
| }
|
| .picker-selector {
| width: 33.33vw;
| height: 100%;
| display: flex;
| align-items: center;
| justify-content: center;
| font-size: var(--td-font-size-base);
| line-height: 36rpx;
| font-weight: 400;
| color: rgba(51, 51, 51, 1);
| }
|
| .picker-selector>text {
| white-space: nowrap;
| text-overflow: ellipsis;
| overflow: hidden;
| }
|
|