diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-11-17 13:50:18 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-11-17 14:27:57 -0800 |
| commit | c0a941be17066c35634bd252b84771dbb0fc025d (patch) | |
| tree | 2709aad71f273252a1e401bb990dd58fd926b4c8 /src/app/components | |
| parent | f9e5da58d2d224358c017bf297b01efd767de8e9 (diff) | |
fix scrolling issue
Diffstat (limited to 'src/app/components')
| -rw-r--r-- | src/app/components/LRCPlayer.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/components/LRCPlayer.tsx b/src/app/components/LRCPlayer.tsx index 92b9531..684a6b7 100644 --- a/src/app/components/LRCPlayer.tsx +++ b/src/app/components/LRCPlayer.tsx @@ -49,6 +49,8 @@ const lrcStyle: CSSProperties = { flex: 1, minHeight: 0, overflow: "hidden !important", + overflowY: "auto", + scrollBehavior: "smooth", }; interface LrcPlayerProps { |
