fix: bottom-align chapter picker, remove border, increase transparency

This commit is contained in:
2026-06-12 12:59:04 +08:00
parent 1499476301
commit 8c08f4026e

View File

@@ -500,17 +500,19 @@ const tree = computed(() => buildTreeForChapter(currentChapterId.value))
position: absolute;
inset: 0;
display: flex;
align-items: center;
align-items: flex-end;
justify-content: center;
z-index: 300;
padding-bottom: 72px;
}
.picker-panel {
background: rgba(12,12,18,0.94);
border: none;
background: rgba(12,12,18,0.82);
backdrop-filter: blur(8px);
border-radius: 16px;
padding: 28px 32px;
box-shadow: 0 4px 24px rgba(0,0,0,0.4);
box-shadow: 0 -1px 12px rgba(0,0,0,0.25);
}
.picker-title {