8000 feat(editor): scrollbar style for firefox by wangcch · Pull Request #320 · vuejs/repl · GitHub
[go: up one dir, main page]

Skip to content

feat(editor): scrollbar style for firefox #320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat(editor): scrollbar style for firefox
  • Loading branch information
wangcch committed Feb 17, 2025
commit 33dd2eda4d8c3299bbcacfbec2dafb0843fe76e5
7 changes: 7 additions & 0 deletions src/editor/FileSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@ function horizontalScroll(e: WheelEvent) {
background-color: var(--color-branding);
}

@-moz-document url-prefix() {
.file-selector {
scrollbar-width: thin;
scrollbar-color: var(--color-branding) var(--border);
}
}

.file-selector.has-import-map .add {
margin-right: 10px;
}
Expand Down
0