mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: Add sidebar to SearchPage #2247 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
29 lines
386 B
Plaintext
29 lines
386 B
Plaintext
.searchSide {
|
|
height: calc(100vh - 72px);
|
|
position: fixed !important;
|
|
inset-inline-start: 0;
|
|
top: 72px;
|
|
bottom: 0;
|
|
|
|
.modelForm {
|
|
display: flex;
|
|
padding: 24px;
|
|
}
|
|
|
|
.checkGroup {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.list {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
.checkbox {
|
|
width: 100%;
|
|
}
|
|
.knowledgeName {
|
|
width: 120px;
|
|
}
|
|
}
|