admin.module.scss 1.25 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
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;
        }
    }
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

    .tableForm {
        border-top: 2px solid;

        & .dNone {
            display: none;
            border: 0;
        }

        & .Row {
            border-bottom: 2px solid;
        }

        & .type {
            font-size: 1.2rem;
            background-color: #000;
            color: #fff;
        }

        & .borderTop {
            border-top: 1px solid;
        }

        & .moreData::after {
            content: attr(data-label);
            margin-left: 1em;
        }
    }
Kim, Subin's avatar
Kim, Subin committed
45
46
}

Kim, Subin's avatar
theater    
Kim, Subin committed
47
48
49
50
51
52
.selectInput {
    & option[disabled] {
        color: #000;
    }
}

Kim, Subin's avatar
Kim, Subin committed
53
54
55
56
.word {
    word-break: keep-all;
}

Kim, Subin's avatar
Kim, Subin committed
57
58
59
60
61
62
63
64
65
66
.shadowNone {
    &:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #000;
    }
}

.textarea {
    resize: none;
67
68
69
70
71
72
73
74
}

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