admin.module.scss 690 Bytes
Newer Older
1
@media screen and (max-width: 767px) {
Kim, Subin's avatar
Kim, Subin committed
2
    .box {
Kim, Subin's avatar
Kim, Subin committed
3
        margin-bottom: 100px;
Kim, Subin's avatar
Kim, Subin committed
4
5
6
7
8
9
10
11
12
13
14
15
16

        & .navbar {
            position: fixed;
            bottom: 0;
            left: 0px;
            width: 100%;
            justify-content: center;
            background-color: #fff;
            padding-top: 5px;
            box-shadow: 0 -5px 3px 0 #FEDC00;
            z-index: 10;
        }
    }
Kim, Subin's avatar
Kim, Subin committed
17
18
19
20
21
22
23
24
25
26
27
28
}

.shadowNone {
    &:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #000;
    }
}

.textarea {
    resize: none;
29
30
31
32
33
34
35
36
37
38
}

.customBtn {
    width: 5em;

    &:hover {
        border-color: #FEDC00;
        background-color: #FEDC00;
        color: #000;
    }
Kim, Subin's avatar
Kim, Subin committed
39
}