search.module.scss 661 Bytes
Newer Older
1
2
3
4
.icon {
    cursor: pointer;
}

Kim, Subin's avatar
수빈    
Kim, Subin committed
5
.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

15
16
17
18
19
20
21
    &:focus {
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #fff;
        color: #fff;
    }
22
23
}

Kim, Subin's avatar
수빈    
Kim, Subin committed
24
.search {
Kim, Subin's avatar
Kim, Subin committed
25
26
27
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
28
29
    box-shadow: none;
    -webkit-box-shadow: none;
Kim, Subin's avatar
Kim, Subin committed
30
    
31
32
33
34
35
    &:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #000;
    }
36
}