From badb30fae922fee2aef3722af4ab448810618ead Mon Sep 17 00:00:00 2001 From: Wolfie <32025746+Wolfkid200444@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:27:12 -0400 Subject: [PATCH] Add Scrollable when theres too many Page's --- src/plugins/holynotes/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/plugins/holynotes/style.css b/src/plugins/holynotes/style.css index 646be422d..4470dad81 100644 --- a/src/plugins/holynotes/style.css +++ b/src/plugins/holynotes/style.css @@ -83,11 +83,22 @@ $modifier: var(--background-modifier-accent); } .vc-notebook-tabbar-bar { + overflow: auto; align-items: stretch; display: flex; gap: 40px; } +.vc-notebook-tabbar-bar::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +.vc-notebook-tabbar-bar::-webkit-scrollbar-thumb { + background-color: red; + border-radius: 4px; +} + .vc-notebook-tabbar-container { border-bottom: 1px solid var(--profile-body-divider-color); margin: 20px 12px 0;