commit dbc7822b378d3a7b5a07bc317a3d8a886f8c9082
parent d4ea885e25c3af41b60fddba30d59682e2214336
Author: Hunter
Date:   Tue, 28 Oct 2025 13:05:08 -0400

disable overscroll; update favicon to 💿

Diffstat:
Mindex.html | 2+-
Mstyles.css | 16++++++++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/index.html b/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html lang="en"> <head> - <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎧</text></svg>"> + <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💿</text></svg>"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>vibe capsule</title> diff --git a/styles.css b/styles.css @@ -11,6 +11,21 @@ user-select: none; } +html { + scroll-behavior: smooth; + overscroll-behavior: none; + -ms-overflow-style: none; + scrollbar-width: none; +} + +html::-webkit-scrollbar { + display: none; +} + +.playlist-wrapper::-webkit-scrollbar { + display: none; +} + body { margin: 0; padding: 0; @@ -80,6 +95,7 @@ body { position: relative; overflow-y: auto; padding-bottom: 60px; + overscroll-behavior: none; } .playlist {