Compare commits

...

2 Commits

Author SHA1 Message Date
d8b284d54e feat: 更新偏好设置面板的反馈渠道信息
Some checks are pending
构建扩展程序 / 构建 Safari 扩展程序 (push) Waiting to run
构建扩展程序 / 构建 Chrome 扩展程序 (push) Successful in 1m6s
构建扩展程序 / 构建 Firefox 附加组件 (push) Successful in 51s
构建扩展程序 / 发布至 Chrome 应用商店 (push) Has been skipped
构建扩展程序 / 发布至 Edge 附加组件商店 (push) Has been skipped
构建扩展程序 / 发布至 Firefox 附加组件库 (push) Has been skipped
- 更新 GitHub 仓库链接描述,明确提及 Issue 功能
- 新增 Discord 社群链接,提供额外的交流和反馈渠道
- 新增 Trello 看板链接,让用户了解开发进度

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-25 13:12:29 +10:00
afe21c0cf6 fix: 修复 Windows 和其他系统中偏好设置面板滚动条显示异常
将 overflow-scroll 更改为 overflow-y-auto 以确保在不同操作系统中
滚动条的一致性显示,避免在 Windows 等系统中出现横向滚动条。

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-25 13:11:34 +10:00

View File

@ -31,7 +31,7 @@ const version = computed(() => {
class="bg-black/30 w-screen h-screen absolute top-0 left-0 z-30 flex justify-center items-center select-none"
@click="$emit('dismiss')">
<div
class="bg-neutral-900/80 shadow-[0_0_16px_0_rgba(0,0,0,0.5)] backdrop-blur-2xl border border-[#ffffff39] rounded-lg w-[60rem] h-3/4 relative overflow-scroll modal-content"
class="bg-neutral-900/80 shadow-[0_0_16px_0_rgba(0,0,0,0.5)] backdrop-blur-2xl border border-[#ffffff39] rounded-lg w-[60rem] h-3/4 relative overflow-y-auto modal-content"
@click.stop>
<div
class="flex justify-between items-center p-8 sticky top-0 bg-gradient-to-b from-neutral-900 to-neutral-900/0 z-10">
@ -126,7 +126,27 @@ const version = computed(() => {
class="flex justify-between items-center px-6 py-4 w-full text-left hover:bg-neutral-300/10 transition-all">
<div class="flex flex-col">
<div class="text-base text-white">前往 GitHub 仓库</div>
<div class="text-sm text-white/80"> Bug 的事情就拜托了大佬桑鞠躬</div>
<div class="text-sm text-white/80"> Issue 中提交问题或建议或者 Bug 的事情就拜托了大佬桑鞠躬</div>
</div>
</a>
</li>
<li class="odd:bg-neutral-300/5">
<a href="https://discord.gg/QQUfeb2gzH" target="_blank"
class="flex justify-between items-center px-6 py-4 w-full text-left hover:bg-neutral-300/10 transition-all">
<div class="flex flex-col">
<div class="text-base text-white">前往 Discord 社群</div>
<div class="text-sm text-white/80">在社群中提交问题或建议或是来聊聊明日方舟的音乐吧</div>
</div>
</a>
</li>
<li class="odd:bg-neutral-300/5">
<a href="https://trello.com/b/Ju1TRXla" target="_blank"
class="flex justify-between items-center px-6 py-4 w-full text-left hover:bg-neutral-300/10 transition-all">
<div class="flex flex-col">
<div class="text-base text-white">前往 Trello 看板</div>
<div class="text-sm text-white/80">了解 MSR Mod 目前的开发进度</div>
</div>
</a>
</li>