feat: basic layout and pages
- add basic layout with sidebar and main container - add three menus in sidebar - add people form page for post people - add text and image input for recognize people info - add people table page for show peoples
This commit is contained in:
19
src/components/InputPanel.css
Normal file
19
src/components/InputPanel.css
Normal file
@@ -0,0 +1,19 @@
|
||||
/* 输入面板组件样式 */
|
||||
.input-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.input-panel .ant-input-outlined,
|
||||
.input-panel .ant-input {
|
||||
background: rgba(255,255,255,0.04);
|
||||
color: #e5e7eb;
|
||||
}
|
||||
|
||||
.input-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
gap: 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user