PaymentPage.module.scss 661 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
.labelStyle {
    display: inline-block;
한규민's avatar
한규민 committed
3
    width: 100px;
Kim, Subin's avatar
Kim, Subin committed
4
5
6
7
8
9
    text-align: right;
    margin-right: 1rem;
}

.warningText {
    font-size: small;
한규민's avatar
한규민 committed
10
11
12
13
14
15
16
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
}

.input {
    margin: 0.5rem 0 0 0;
    border-radius: 3px;
    text-align: center;
}


.butterYellowAndBtn{
color: black;
background-color:  #FEDC00;
border: 1px solid black;
text-align: center;
padding: none;
}

.btnHover:hover{
background-color: black;
color: #FEDC00;
transition: ease-out;
border: 1px solid white ;
text-align: center;
padding: none;

}

.errorMsg{
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 0.5rem 0;
    text-align: end;
    font-size: 13px;
    color: #FEDC00;

Kim, Subin's avatar
Kim, Subin committed
45
}