You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-26 22:41:17 +02:00
Desktop: Accessibility: Add setting to increase scrollbar and other small control sizes (#11627)
This commit is contained in:
@@ -31,8 +31,8 @@ a {
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
width: var(--scrollbar-size, 7px);
|
||||
height: var(--scrollbar-size, 7px);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
@@ -45,7 +45,7 @@ a {
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: rgba(100, 100, 100, 0.3);
|
||||
border-radius: 5px;
|
||||
border-radius: calc(var(--scrollbar-size, 7px) * 0.7);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track:hover {
|
||||
|
||||
Reference in New Issue
Block a user