diff --git a/miniapp/pages/index/index.wxml b/miniapp/pages/index/index.wxml
index c8fb2cb..9116040 100644
--- a/miniapp/pages/index/index.wxml
+++ b/miniapp/pages/index/index.wxml
@@ -12,8 +12,6 @@
{{uploadMessage}}
-
-
@@ -47,10 +45,7 @@
-
- 方
- 向
-
+ 方向
{{direction === 'source-to-target' ? 'source' : 'target'}}
@@ -58,10 +53,7 @@
-
- 位
- 置
-
+ 位置
{{labelPositionOptionLabels[labelPositionIndex]}}
@@ -71,10 +63,7 @@
-
- 对
- 齐
-
+ 对齐
{{targetAlignOptionLabels[targetAlignIndex]}}
diff --git a/miniapp/pages/index/index.wxss b/miniapp/pages/index/index.wxss
index e7d333d..6e1e0f7 100644
--- a/miniapp/pages/index/index.wxss
+++ b/miniapp/pages/index/index.wxss
@@ -73,11 +73,6 @@
text-overflow: ellipsis;
}
-.toolbar-spacer {
- flex: 1;
- min-width: 0;
-}
-
.export-box {
background: #fff;
border: 0.5px solid #e5e6eb;
@@ -116,6 +111,7 @@
.preview-head {
display: flex;
align-items: center;
+ justify-content: space-between;
gap: 4px;
}
@@ -126,7 +122,9 @@
}
.preview-controls {
- flex: 1;
+ flex: 0 1 auto;
+ width: 286px;
+ max-width: calc(100% - 82px);
min-width: 0;
display: flex;
align-items: center;
@@ -176,13 +174,12 @@
height: 8px;
}
-.vertical-label {
- display: flex;
- flex-direction: column;
+.inline-label {
color: #000;
font-size: 12px;
font-weight: 600;
line-height: 1;
+ white-space: nowrap;
}
.direction-switch {