Thinner and thinner scrollbars are part of a developer push to get rid of scrollbars entirely. Gnome wants them gone (along with its long list of other removals) and has been whittling away at them. The latest gtk4 removes scrollbar steppers entirely.
They just keep pushing.
In order to restore scrollbar functionality a user must do some custom configuration.
In your Home Directory, you have a folder : .config
If you do not see it, hit the keyboard shortcut ctrl+h to reveal the hidden folders. This shortcut toggles that on and off.
Shorthand, in Linux, for the path to your Home Directory (/home/$USER) is simply: ~
In this case, navigate to ~/.config/gtk-3.0/ and in that directory, create a new Document File named gtk.css
Paste the following into it:
scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider,
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider, scrollbar.overlay-indicator:not(.dragging):not(.hovering) trough {
min-width: 8px;
min-height: 8px;
}
scrollbar trough, scrollbar slider {
min-width: 16px;
}
scrollbar.horizontal trough, scrollbar.horizontal slider {
min-height: 16px;
}
Save the file.
Log out and in or reboot to test.
I double checked and the file is still there with the correct code. (When you said create a new file, I assume you meant .txt file, but changing the suffix to css instead of txt?)








