🐛 fixed scrollbar being impossible to grab (#4923)

* adjusted scrollbar width

* added icons to release note generator

* release notes
This commit is contained in:
Alec Bakholdin
2025-05-11 13:23:29 -04:00
committed by GitHub
parent 96949b701e
commit 3cab9a374b
3 changed files with 14 additions and 5 deletions

View File

@@ -36,10 +36,10 @@ async function run() {
message: 'Release Note Type',
type: 'select',
choices: [
{ title: 'Features', value: 'Features' },
{ title: 'Enhancements', value: 'Enhancements' },
{ title: 'Bugfix', value: 'Bugfix' },
{ title: 'Maintenance', value: 'Maintenance' },
{ title: 'Features', value: 'Features' },
{ title: '👍 Enhancements', value: 'Enhancements' },
{ title: '🐛 Bugfix', value: 'Bugfix' },
{ title: '⚙️ Maintenance', value: 'Maintenance' },
],
},
{

View File

@@ -42,10 +42,13 @@ function onScrollbarChange() {
styles.darkScrollbar = !hiddenScrollbars && {
'& ::-webkit-scrollbar': {
width: 7,
width: 11,
backgroundColor: 'rgba(0, 0, 0, 0)',
},
'& ::-webkit-scrollbar-thumb:vertical': {
width: 7,
borderRadius: 30,
backgroundClip: 'padding-box',
backgroundColor: 'rgba(200, 200, 200, .5)',
},
};

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [alecbakholdin]
---
Made dark scrollbar wider for the account sidebar.