WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2024-05-16 bc8f7123657eb2dde8a328928140c94ea0cc3d29
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
/**
 * 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;
        }
    }
    &.type-bar {
        display: flex;
        align-items: center;
        .at-input {
            margin-left: 14px;
        }
    }
}