diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-18 15:01:22 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-18 15:01:22 -0800 |
| commit | 082089e427df8e34a366684f71f35ed700ec5d04 (patch) | |
| tree | 6a8eb1314cc203f4e070c98422a9cb75699766f1 /web/dist/v3/themes/sakura.css | |
| parent | 7776e81b39130c211eb0ec566c6467a28a9fa64c (diff) | |
| parent | 0876a683cdc344b200dbd65aa137969a1528c85d (diff) | |
| download | neko-082089e427df8e34a366684f71f35ed700ec5d04.tar.gz neko-082089e427df8e34a366684f71f35ed700ec5d04.tar.bz2 neko-082089e427df8e34a366684f71f35ed700ec5d04.zip | |
Merge pull request #20 from adammathes/claude/investigate-theme-performance-GjjYA
Optimize scroll performance and reduce layout thrashing
Diffstat (limited to 'web/dist/v3/themes/sakura.css')
| -rw-r--r-- | web/dist/v3/themes/sakura.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/dist/v3/themes/sakura.css b/web/dist/v3/themes/sakura.css index f0fc990..48a1c0a 100644 --- a/web/dist/v3/themes/sakura.css +++ b/web/dist/v3/themes/sakura.css @@ -57,7 +57,8 @@ body { background-color: var(--bg-color); color: var(--text-color); -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; + /* text-rendering: optimizeLegibility removed -- causes expensive text + shaping on all content, leading to scroll jank on mobile. */ } /* ---- Sidebar ---- */ |
