schedule.module.scss 866 Bytes
Newer Older
Kim, Subin's avatar
KU    
Kim, Subin committed
1
2
3
4
.list {
    overflow-y: auto;
}

Kim, Subin's avatar
Kim, Subin committed
5
6
7
8
9
10
11
12
13
14
15
.activeBtn {
    &:focus {
        border-color: black;
    }

    // 펼쳐졌을 때
    &:not(.collapsed) {
        color: black;
        border-bottom: 1px solid #000000;
        white-space: normal;

Kim, Subin's avatar
Kim, Subin committed
16
17
18
19
20
21
        & .period {
            display: block;
        }

        & .time {
            display: none;
Kim, Subin's avatar
Kim, Subin committed
22
23
24
25
26
27
28
29
30
        }
    }

    // 숨겨졌을 때
    &[class~="collapsed"] {
        border-bottom: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
Kim, Subin's avatar
Kim, Subin committed
31
32
33
34
35
36
37
38

        & .period {
            display: none;
        }

        & .time {
            display: block;
        }
Kim, Subin's avatar
Kim, Subin committed
39
40
41
42
43
44
45
46
47
    }

    &::after {
        display: none;
    }
}

.textBox {
    white-space: pre-line;
Kim, Subin's avatar
KU    
Kim, Subin committed
48
49
50
51
52
53
54
55
56
57
58
59
60
}

.header {
    background-color: crimson;
    & .ku_tiger {
        width: 46px;
        height: 35px;
    }
}

// .flowText {

// }