blob: e4570d4fb38b7d82083fe81b896a5e4008a20119 (
plain)
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
|
.container {
background-color: #e6e6fa;
width: 100%;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.fixed-select-wrapper {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
}
.chat-container {
margin: 60px 0;
padding: 0 100px;
}
.question {
display: flex;
}
.record-input{
margin-left: 10px;
resize: none;
}
.question span {
background-color: white;
font-size: 16px;
margin-left: 10px;
padding: 10px;
border-radius: 8px;
}
.question img {
width: 28px;
height: 28px;
}
.answer {
display: flex;
}
.answer span{
background-color: white;
font-size: 16px;
margin-left: 10px;
padding: 10px;
border-radius: 8px;
white-space: pre-line;
}
.answer img {
width: 28px;
height: 28px;
}
.chat-input {
margin-top: 30px;
padding-left: 1100px;
}
.input-wrapper {
display: flex;
justify-content: space-around;
width: e("calc(100% - 240px)");
margin: 0 100px;
margin-left: 138px;
padding: 10px;
background: #fff;
border-radius: 8px;
border: 2px solid #8a2be2;
}
.text-input {
width: e("calc(100% - 50px)");
background-color: white;
color: black;
text-align: left;
border: 0;
resize: none;
&:focus {
border: 0 !important;
box-shadow: none;
}
}
.icon {
width: 50px;
height: 50px;
cursor: pointer;
>img {
width: 35px;
height: 31px;
margin-top: 15px;
margin-left: 15px;
}
}
|