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
| /**
| * CFilterInput
| * @author Tevin
| */
|
| @import "../../common/sassMixin";
|
| .c-filter-input {
| .label {
| line-height: 40px;
| }
| .at-input {
| height: 90px;
| padding: 0;
| margin: 0;
| background-color: transparent;
| &::after {
| display: none;
| }
| input {
| height: 90px;
| line-height: 90px;
| }
| }
| }
|
|