修改智能导入

This commit is contained in:
筱野
2025-09-26 21:47:51 +08:00
parent 4492a22f1f
commit 5e7feb7cca
2 changed files with 17 additions and 15 deletions

View File

@@ -207,7 +207,7 @@ const AiImportPopup: React.FC<AiImportPopupProps> = ({
<Text className={styles.title}></Text>
</View>
<View className={styles.closeButton} onClick={onClose}>
<Image src={images.ICON_CLOSE} className={styles.lightningIcon} />
<Image src={images.ICON_CLOSE} className={styles.lightningIcon} />
</View>
</View>

View File

@@ -9,14 +9,14 @@
box-sizing: border-box;
max-height: 80vh;
overflow-y: auto;
background: rgba(0, 0, 0, 0.06);
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
border-bottom: 1px solid #f0f1f5;
padding: 16px;
.titleContainer {
display: flex;
@@ -36,24 +36,26 @@
}
.closeButton {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
.closeIcon {
font-size: 20px;
color: #8a8a8a;
line-height: 1;
display: flex;
width: 40px;
height: 40px;
box-sizing: border-box;
border-radius: 999px;
border: 1px solid rgba(0, 0, 0, 0.06);
background: #FFF;
box-shadow: 0 4px 36px 0 rgba(0, 0, 0, 0.06);
.lightningIcon{
width: 24px;
height: 24px;
}
}
}
.textAreaContainer {
position: relative;
padding: 16px 20px;
padding: 0 16px 12px 16px;
.textArea {
width: 100%;
@@ -87,7 +89,7 @@
}
.imageRecognitionContainer {
padding: 0 20px 16px;
padding: 0 20px;
.imageRecognitionButton {
display: flex;
@@ -126,7 +128,7 @@
}
.bottomButtons {
padding: 16px 20px 20px;
padding: 28px 16px 16px 16px;
display: flex;
gap: 12px;
padding-bottom: calc(20px + env(safe-area-inset-bottom));