Adding a scrollbar to the sidebar for better navigation. (#120)

* manually set basePath in `next.config.mjs`

* Fix: add getDisplayValueFromType formatting in InstallCommand instead of displaying raw type

* Refactor ScriptAccordion to improve layout and scroll handling
This commit is contained in:
Bram Suurd 2024-11-07 16:37:23 +01:00 committed by GitHub
parent 0988ee1601
commit 10b2ddf3e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 28 additions and 19 deletions

View file

@ -119,8 +119,6 @@
}
}
@layer base {
* {
@apply border-border;
@ -134,7 +132,15 @@
}
::-webkit-scrollbar {
display: none;
width: 9px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(155, 155, 155, 0.25);
border-radius: 20px;
border: transparent;
}
.glass {