search.module.scss 408 Bytes
Newer Older
한규민's avatar
한규민 committed
1
2
3
4
5
.icon {
    cursor: pointer;
}

#searchWhite {
6
7
8
9
10
11
12
13
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    margin-bottom: 5px;
14

한규민's avatar
한규민 committed
15
16
17
18
19
20
21
    &:focus {
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #fff;
        color: #fff;
    }
22
}