File size: 1,596 Bytes
be99f83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9ee6e3a
c33b05f
 
 
9ee6e3a
 
c33b05f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9ee6e3a
565e3eb
c33b05f
 
565e3eb
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
.flowListWrapper {
  padding: 48px;
}

.topWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 60px 72px;

  .title {
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: @fontWeight600;
    line-height: 38px;
    color: rgba(16, 24, 40, 1);
  }
  .description {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: rgba(71, 84, 103, 1);
  }

  .topButton {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: @fontWeight600;
    line-height: 20px;
  }

  .filterButton {
    display: flex;
    align-items: center;
    .topButton();
  }
}
.flowCardContainer {
  padding: 0 60px;
  overflow: auto;
  .knowledgeEmpty {
    width: 100%;
  }
}

.templatesBox {
  max-height: 70vh;
  overflow: auto;
}

.agentTemplateModal {
  top: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  padding: 0;

  :global(.ant-modal-content) {
    // width: 100vw;
    height: 100%;
    border-radius: 0;
  }
  .agentDescription {
    padding-top: 18px;
    height: 110px;
  }
  .createModalContent {
    height: 90vh;
  }
  .agentTitleWrapper {
    width: 80%;
  }
  .flowTemplateCard {
    position: relative;
    cursor: pointer;
  }

  .selectedFlowTemplateCard {
    background-color: @selectedBackgroundColor;
  }
  .useButton {
    position: absolute;
    width: 84%;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
  }
}

.agentTemplateModalWrapper {
  margin: 0;
}