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
| .wowjoy-input {
| overflow: hidden;
| width: 100%;
| height: 100%;
| flex: 1;
| z-index: 5;
| display: inline-block;
| }
| .wowjoy-input__inner {
| width: 100%;
| height: 36px;
| border: 1px solid #ddd;
| outline: none;
| transition: all 0.3s;
| padding-left: 11px;
| font-size: 14px;
| color: rgb(102, 102, 102);
| &:focus {
| border-color: #1890ff;
| }
| }
| .wowjoy-textarea__inner {
| width: 100%;
| border: 1px solid #ddd;
| outline: none;
| transition: all 0.3s;
| padding: 0 11px;
| font-size: 14px;
| color: rgb(102, 102, 102);
| &:focus {
| border-color: #1890ff;
| }
| }
|
|