fix(settings): 修复 SettingsView 中的 CSS 类名拼写错误

- 将 `flex[-justify-end-]` 修正为 `flex-justify-end`,以确保布局正确显示。
This commit is contained in:
anghunk
2026-01-15 15:14:28 +08:00
parent d9949bd8ad
commit c217ed058c

View File

@@ -83,7 +83,7 @@ export const SettingsView = html`
<p class="text-xs text-gray-500 mt-1">设置后,文章链接将自动拼接此前缀</p>
</div>
</div>
<div class="flex justify-end mt-4">
<div class="flex mt-4">
<button @click="saveSettings" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">确认保存</button>
</div>
</main>