schedule.module.scss 1.05 KB
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
.activeBtn {
Kim, Subin's avatar
Kim, Subin committed
6
7
8
9
    & .title {
        width: inherit;
    }

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

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

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

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

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

    // 숨겨졌을 때
    &[class~="collapsed"] {
        border-bottom: 0;
Kim, Subin's avatar
Kim, Subin committed
36
37
38
39
40
        & .title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
Kim, Subin's avatar
Kim, Subin committed
41
42
43
44
45
46
47
48

        & .period {
            display: none;
        }

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

    &::after {
        display: none;
    }
}

.textBox {
Kim, Subin's avatar
Kim, Subin committed
57
58
    white-space: pre-wrap;
    word-break: break-all;
Kim, Subin's avatar
KU    
Kim, Subin committed
59
60
61
62
63
64
65
66
67
68
}

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

Kim, Subin's avatar
Kim, Subin committed
69
70
71
.flowText {
    font-family: "Plex-Bold";
}