feat: Add sidebar to SearchPage #2247 (#2267)

### 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:
balibabu
2024-09-05 16:04:04 +08:00
committed by GitHub
parent 878dca26bb
commit b2f87a9f8f
3 changed files with 85 additions and 37 deletions

View File

@ -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%;