WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2023-08-17 bbf650c05d393447f8ff4afb7e6e21f109281c7b
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;
        }
    }
}