feat: Implement EPUB reader modal with navigation and audio playback features

This commit is contained in:
JB
2025-10-10 06:48:59 -07:00
parent e37ef99856
commit e7408a06b8
6 changed files with 932 additions and 13 deletions
+23
View File
@@ -233,6 +233,29 @@ body {
border-radius: 28px;
}
.reader-modal {
width: min(960px, 95vw);
height: min(90vh, 720px);
display: flex;
flex-direction: column;
}
.reader-modal__body {
padding: 0;
flex: 1 1 auto;
display: flex;
flex-direction: column;
background: rgba(15, 23, 42, 0.75);
}
.reader-modal__frame {
width: 100%;
height: 100%;
border: none;
border-radius: 18px;
background: #0f172a;
}
.voice-browser__header {
display: flex;
align-items: center;