We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09e82f commit fa9bb25Copy full SHA for fa9bb25
src/webviews/apps/shared/components/styles/lit/base.css.ts
@@ -61,4 +61,8 @@ export const scrollableBase = css`
61
border-color: var(--vscode-scrollbarSlider-background);
62
transition: none;
63
}
64
+
65
+ :host-context(.preload) .scrollable {
66
+ transition: none;
67
+ }
68
`;
src/webviews/apps/shared/styles/scrollbars.scss
@@ -1,10 +1,14 @@
1
-@mixin scrollableBase() {
+@mixin scrollbarFix() {
2
// This @supports selector is a temporary fix for https://github.com/microsoft/vscode/issues/213045#issuecomment-2211442905
3
@supports selector(::-webkit-scrollbar) {
4
html {
5
scrollbar-color: unset;
6
7
8
+}
9
10
+@mixin scrollableBase() {
11
+ @include scrollbarFix();
12
13
body {
14
&.scrollable,
0 commit comments