mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-29 16:05:35 +08:00
### What problem does this PR solve? feat: send question with retrieval api #2247 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -1,9 +1,17 @@
|
||||
.searchPage {
|
||||
// height: 100%;
|
||||
}
|
||||
|
||||
.searchSide {
|
||||
height: calc(100vh - 72px);
|
||||
position: fixed !important;
|
||||
// height: calc(100vh - 72px);
|
||||
position: relative;
|
||||
// position: fixed !important;
|
||||
// top: 72px;
|
||||
// bottom: 0;
|
||||
:global(.ant-layout-sider-children) {
|
||||
height: auto;
|
||||
}
|
||||
inset-inline-start: 0;
|
||||
top: 72px;
|
||||
bottom: 0;
|
||||
|
||||
.modelForm {
|
||||
display: flex;
|
||||
@ -16,13 +24,29 @@
|
||||
}
|
||||
.list {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
// height: 100%;
|
||||
height: calc(100vh - 152px);
|
||||
overflow: auto;
|
||||
}
|
||||
.checkbox {
|
||||
width: 100%;
|
||||
}
|
||||
.knowledgeName {
|
||||
width: 120px;
|
||||
width: 130px;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
height: 100%;
|
||||
.main {
|
||||
width: 60%;
|
||||
// background-color: aqua;
|
||||
overflow: auto;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.graph {
|
||||
width: 40%;
|
||||
background-color: bisque;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user