movie-table.module.scss 455 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
.Row:hover {
    background: rgba(0, 0, 0, 0.075);
}

Kim, Subin's avatar
Kim, Subin committed
5
6
.word {
    word-break: keep-all;
Kim, Subin's avatar
Kim, Subin committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
}

@media screen and (max-width: 767px) {
    .tableForm {
        border-top: 2px solid;

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

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

            & .data::before {
                content: attr(data-label);
                font-weight: bold;
            }
        }
    }
};