We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76272a0 commit d77e797Copy full SHA for d77e797
src/components/ExpressionEditor.vue
@@ -1775,22 +1775,25 @@ onMounted(() => {
1775
1776
&.horizontal-layout {
1777
flex-direction: row;
1778
+ gap: 0;
1779
+ display: flex;
1780
+ align-items: flex-start;
1781
1782
.variables-section {
1783
border-right: 1px solid var(--editor-border);
- margin-right: 16px; // 只保留margin-right,移除padding-right
1784
min-width: 200px;
1785
flex-shrink: 1;
-
- // 在水平布局时设置最大高度
1786
max-height: 600px;
1787
}
1788
1789
+ .calculator {
1790
+ margin-left: 12px; // 只在虚拟键盘上添加最小的左边距
1791
+ flex-shrink: 0;
1792
+ }
1793
+
1794
&.hide-keyboard {
- gap: 0;
1795
1796
border-right: none;
- margin-right: 0; // 在隐藏键盘时移除右边距
1797
1798
1799
0 commit comments