🎈 perf: 在更新弹窗中提高关闭按钮与控制台的间距

之前的按钮与控制台内容重叠了,就增加一点间距
This commit is contained in:
IGCrystal
2025-06-19 11:54:27 +08:00
parent 745a01246c
commit a8ba0720af

View File

@@ -1015,10 +1015,13 @@ onMounted(async () => {
<div style="margin-top: 32px;">
<h3>{{ tm('dialogs.loading.logs') }}</h3>
<ConsoleDisplayer historyNum="10" style="height: 200px; margin-top: 16px;"></ConsoleDisplayer>
<ConsoleDisplayer historyNum="10" style="height: 200px; margin-top: 16px; margin-bottom: 24px;"></ConsoleDisplayer>
</div>
</v-card-text>
<v-card-actions>
<v-divider></v-divider>
<v-card-actions class="pa-4">
<v-spacer></v-spacer>
<v-btn color="blue-darken-1" variant="text" @click="resetLoadingDialog">{{ tm('buttons.close') }}</v-btn>
</v-card-actions>