fix: 修复 Windows 和其他系统中偏好设置面板滚动条显示异常
将 overflow-scroll 更改为 overflow-y-auto 以确保在不同操作系统中 滚动条的一致性显示,避免在 Windows 等系统中出现横向滚动条。 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
db881da671
commit
afe21c0cf6
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue
Block a user