mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
🐛 fixed scrollbar being impossible to grab (#4923)
* adjusted scrollbar width * added icons to release note generator * release notes
This commit is contained in:
@@ -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' },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -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)',
|
||||
},
|
||||
};
|
||||
|
||||
6
upcoming-release-notes/4923.md
Normal file
6
upcoming-release-notes/4923.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [alecbakholdin]
|
||||
---
|
||||
|
||||
Made dark scrollbar wider for the account sidebar.
|
||||
Reference in New Issue
Block a user