File size: 596 Bytes
6b8fc2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.knowledge {
    padding: 24px;
}

.container {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .content {
        display: flex;
        justify-content: space-between;

        .context {
            flex: 1
        }
    }

    .footer {
        height: 20px;

        .text {
            margin-left: 10px;
        }
    }
}

.card {
    :global {
        .ant-card-body {
            padding: 10px;
            margin: 0;
        }

        margin-bottom: 10px;
    }

    cursor: pointer;

}