Skip to content

Commit 58dd3e7

Browse files
Zetaphoryyx990803
authored andcommitted
Fixed StateInspector scrollbars on Firefox (#359)
ScrollPane.vue was using "overflow overlay" which is not supported in Firefox. Changing this to "overflow auto" fixes scrolling in Firefox while not impacting UI or functionality in Chrome.
1 parent c8b9b1e commit 58dd3e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/devtools/components/ScrollPane.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default {
4747
4848
.scroll
4949
flex 1
50-
overflow overlay
50+
overflow auto
5151
.app.dark &::-webkit-scrollbar
5252
background: $dark-background-color
5353
border-left: 1px solid $dark-border-color

0 commit comments

Comments
 (0)