mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-03 02:55:29 +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)
This commit is contained in:
@ -1,17 +1,23 @@
|
||||
.searchSide {
|
||||
overflow: auto;
|
||||
height: 100vh;
|
||||
height: calc(100vh - 72px);
|
||||
position: fixed !important;
|
||||
inset-inline-start: 0;
|
||||
top: 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%;
|
||||
|
||||
Reference in New Issue
Block a user