schedule.module.scss 1.1 KB
Newer Older
Kim, Subin's avatar
KU    
Kim, Subin committed
1
.list {
Kim, Subin's avatar
Kim, Subin committed
2
    height: 46vh;
Kim, Subin's avatar
KU    
Kim, Subin committed
3
4
5
    overflow-y: auto;
}

Kim, Subin's avatar
Kim, Subin committed
6
.activeBtn {
Kim, Subin's avatar
Kim, Subin committed
7
8
9
10
    & .title {
        width: inherit;
    }

Kim, Subin's avatar
Kim, Subin committed
11
12
13
14
15
16
17
18
    &:focus {
        border-color: black;
    }

    // 펼쳐졌을 때
    &:not(.collapsed) {
        color: black;
        border-bottom: 1px solid #000000;
Kim, Subin's avatar
Kim, Subin committed
19
20
21
22
23

        & .title {
            white-space: normal;
            word-break: break-all;
        }
Kim, Subin's avatar
Kim, Subin committed
24

Kim, Subin's avatar
Kim, Subin committed
25
26
27
28
29
30
        & .period {
            display: block;
        }

        & .time {
            display: none;
Kim, Subin's avatar
Kim, Subin committed
31
32
33
34
35
36
        }
    }

    // 숨겨졌을 때
    &[class~="collapsed"] {
        border-bottom: 0;
Kim, Subin's avatar
Kim, Subin committed
37

Kim, Subin's avatar
Kim, Subin committed
38
39
40
41
42
        & .title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
Kim, Subin's avatar
Kim, Subin committed
43
44
45
46
47
48
49
50

        & .period {
            display: none;
        }

        & .time {
            display: block;
        }
Kim, Subin's avatar
Kim, Subin committed
51
52
53
54
55
56
57
58
    }

    &::after {
        display: none;
    }
}

.textBox {
Kim, Subin's avatar
Kim, Subin committed
59
60
    white-space: pre-wrap;
    word-break: break-all;
Kim, Subin's avatar
Kim, Subin committed
61
    background-color: #fff5f7;
Kim, Subin's avatar
KU    
Kim, Subin committed
62
63
64
65
66
}

.header {
    background-color: crimson;
    & .ku_tiger {
Kim, Subin's avatar
Kim, Subin committed
67
68
        width: 42px;
        height: 30px;
Kim, Subin's avatar
KU    
Kim, Subin committed
69
70
71
    }
}

Kim, Subin's avatar
Kim, Subin committed
72
73
74
.flowText {
    font-family: "Plex-Bold";
}