diff --git a/bin/release-note-generator.ts b/bin/release-note-generator.ts index 564b8e0438..17d26d885e 100644 --- a/bin/release-note-generator.ts +++ b/bin/release-note-generator.ts @@ -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' }, ], }, { diff --git a/packages/desktop-client/src/style/styles.ts b/packages/desktop-client/src/style/styles.ts index 03656a75fb..ce079661c8 100644 --- a/packages/desktop-client/src/style/styles.ts +++ b/packages/desktop-client/src/style/styles.ts @@ -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)', }, }; diff --git a/upcoming-release-notes/4923.md b/upcoming-release-notes/4923.md new file mode 100644 index 0000000000..ceecfdcf9c --- /dev/null +++ b/upcoming-release-notes/4923.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [alecbakholdin] +--- + +Made dark scrollbar wider for the account sidebar.