mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-21 13:32:49 +08:00
feat: enlarge the size of the next button for uploading files and add locale config to global.ts (#195)
feat: enlarge the size of the next button for uploading files feat: add locale config to global.ts
This commit is contained in:
@ -1,16 +1,24 @@
|
||||
.uploadWrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 32px;
|
||||
padding: 64px 32px 32px;
|
||||
height: 100%;
|
||||
.backToList {
|
||||
display: none;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.footer {
|
||||
text-align: right;
|
||||
text-align: center;
|
||||
padding-top: 16px;
|
||||
.nextButton {
|
||||
background-color: @purple;
|
||||
// background-color: @purple;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 26px 40px;
|
||||
justify-content: center;
|
||||
width: 10%;
|
||||
}
|
||||
}
|
||||
.uploadContent {
|
||||
|
||||
@ -287,9 +287,10 @@ const KnowledgeUploadFile = () => {
|
||||
<section className={styles.footer}>
|
||||
<Button
|
||||
type="primary"
|
||||
// className={styles.nextButton}
|
||||
className={styles.nextButton}
|
||||
onClick={handleNextClick}
|
||||
disabled={!enabled}
|
||||
size="large"
|
||||
>
|
||||
Next
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user