Integrate Chat and Copilot into chat-sdk, and add SQL parse display (#166)

This commit is contained in:
williamhliu
2023-10-02 18:05:12 +08:00
committed by GitHub
parent 741ed4191b
commit 71cb20eb4f
68 changed files with 1353 additions and 882 deletions

View File

@@ -0,0 +1,36 @@
.recommendQuestions {
display: flex;
.recommendQuestionsMsg {
padding: 12px 20px 20px !important;
.title {
margin-bottom: 12px;
font-weight: 500;
font-size: 14px;
}
.content {
display: flex;
flex-wrap: wrap;
align-items: center;
column-gap: 16px;
row-gap: 20px;
.question {
height: 22px;
padding: 0 6px;
color: var(--text-color);
font-size: 12px;
line-height: 22px;
background-color: #f4f4f4;
border-radius: 11px;
cursor: pointer;
&:hover {
color: var(--chat-blue);
}
}
}
}
}