File size: 2,262 Bytes
dc9e27a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.answer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;

    .avatar {
        width: 32px;
        height: 32px;
        margin-right: 16px;
        border-radius: 50%;
        flex-shrink: 0;

        img {
            width: 100%;
        }
    }

    .reaponseAarea {
        display: flex;
        flex-direction: column;
        width: calc(100% - 48px);
        background-color: #F4F5F9;
        padding: 12px 16px;
        border-radius: 16px;
        overflow-x: hidden;
    }

    .inner {
        width: 100%;
        overflow-x: hidden;
        background-color: #fff;
        border-radius: 16px;
        border: 1px solid var(----line-2, #EBECF0);
        box-sizing: border-box;
        transition: all 0.5s ease;
        margin-bottom: 16px;
        position: relative;
    }

    .graphIcon {
        padding: 2px 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        border: 1px solid var(----line-2, #EBECF0);
        background: var(---fill-0, #FFF);
        color: #121316CC;
        font-size: 14px;
        line-height: 24px;
        cursor: pointer;

        svg {
            margin-left: 4px;
        }

        &:hover {
            background-color: #D7D8DD;
            color: #121316CC;

            svg path {
                fill: #121316CC;
            }
        }
    }

    .showGraph {
        width: 118px;
        margin-bottom: 16px;
        border-radius: 8px;
        border: 1px solid var(----line-2, #EBECF0);
        background: var(---fill-0, #FFF);
    }

    .closeGraph {
        position: absolute;
        right: 12px;
        bottom: 12px;
    }

    .reaponse {
        color: #121316;
        font-size: 14px;
        line-height: 24px;
        padding: 18px 42px;
    }

    // h3 {
    //     font-size: 24px;
    //     font-weight: 600;
    //     line-height: 36px;
    //     margin: 0 0 16px 0;
    // }

    // h4 {
    //     font-size: 20px;
    //     font-weight: 600;
    //     line-height: 30px;
    //     margin: 0 0 8px 0;
    // }
}

.draft {
    width: 100%;
    white-space: wrap;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}