1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 10:26:21 +00:00

Add Scrollable when theres too many Page's

This commit is contained in:
Wolfie 2024-03-11 16:27:12 -04:00
parent e12a7565d8
commit badb30fae9
No known key found for this signature in database
GPG key ID: DE384EE9BF2D909A

View file

@ -83,11 +83,22 @@ $modifier: var(--background-modifier-accent);
} }
.vc-notebook-tabbar-bar { .vc-notebook-tabbar-bar {
overflow: auto;
align-items: stretch; align-items: stretch;
display: flex; display: flex;
gap: 40px; 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 { .vc-notebook-tabbar-container {
border-bottom: 1px solid var(--profile-body-divider-color); border-bottom: 1px solid var(--profile-body-divider-color);
margin: 20px 12px 0; margin: 20px 12px 0;