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
| @import (reference) 'dingtalk-theme/dingtalk-x/mob.less';
|
| .MyCardSearchBar {
| display: flex;
| align-items: center;
| border: 1px solid #007fff;
| border-radius: 20px;
| margin: 0 12px 16px;
| padding: 4px;
| background-color: @common_bg_z1_color;
| display: flex;
| align-items: center;
|
| &-search {
| height: 20px;
| flex: 1;
| border-radius: 5px;
| padding: 0 12px;
| color: rgba(0, 0, 0, 0.5);
| line-height: 32px;
| margin-right: 16px;
| &-input {
| height: 20px;
| line-height: 20px;
| }
| }
|
| &-scan {
| display: flex;
| align-items: center;
| // width: 52px;
| justify-content: center;
| background-color: #007fff;
| color: #ffffff;
| padding: 4px 12px;
| border-radius: 20px;
| line-height: 20px;
| }
| }
|
|