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
|
| .uni-file-picker {
|
| box-sizing: border-box;
| overflow: hidden;
| width: 100%;
|
| flex: 1;
| }
| .uni-file-picker__header {
| padding-top: 5px;
| padding-bottom: 10px;
|
| display: flex;
|
| justify-content: space-between;
| }
| .file-title {
| font-size: 14px;
| color: #333;
| }
| .file-count {
| font-size: 14px;
| color: #999;
| }
| .icon-add {
| width: 50px;
| height: 5px;
| background-color: #f1f1f1;
| border-radius: 2px;
| }
| .rotate {
| position: absolute;
| transform: rotate(90deg);
| }
|
|