modal.module.scss 243 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
.header {
    background-color: crimson;

    & .closeBtn {
        font-size: 1.2em;
    }
}

.body {
    height: 350px
11
12
13
14
15
16
17
18
19
}

.textInput {
    border: none;
    border-bottom: 1px solid #000;

    &:focus {
        border-color: crimson;
    }
Kim, Subin's avatar
Kim, Subin committed
20
}