Any way to change scrollbar width? It's too small for me

Hello @tomocska

Good news! @klaas was kind enough to gather many people’s snippets here https://github.com/Dmitriy-Shulha/obsidian-css-snippets/tree/develop/Snippets. The following snippet can be adjusted and enabled within Settings > Appearance. If you are unsure how to do that, I believe it is described in the help and multiple forum posts. I grabbed that link from this topic: "How to achieve" CSS code snippets

/* Scrollbar */
/* change width */
::-webkit-scrollbar {
  width:15px;
}

Good luck!

5 Likes