Skip to content

Commit

Permalink
Fix click-and-hold scrolling in designer (#13194)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErlingHauan authored and Jondyr committed Jul 22, 2024
1 parent 4ac7074 commit 6cda415
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion frontend/app-development/layout/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ button[class*='Button-module_small__'] svg {
}

::-webkit-scrollbar {
width: 5px;
width: 6px;
}

::-webkit-scrollbar-thumb {
background: darkgray;
border-radius: 5px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
}

.resizeHandleH:after {
inset: 0px -6px;
inset: 0 -5px 0 0;
}

.resizeHandleV {
cursor: row-resize;
}

.resizeHandleV:after {
inset: -6px 0px;
inset: 0 0 -5px 0;
}

.hideLeftSide {
Expand Down

0 comments on commit 6cda415

Please sign in to comment.