This commit is contained in:
Alex Dima 2021-01-28 20:31:48 +01:00
parent d7821d5fb0
commit f54b4fe577
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0

View file

@ -23,6 +23,19 @@
margin: 0;
}
/*
In certain cases, the default positioning of the aria container (left: -999em) can cause scrollbars to appear.
So here we try to avoid that by using a different technique. See https://stackoverflow.com/a/26032207
*/
.monaco-aria-container {
position: absolute !important;
height: 1px;
width: 1px;
left: inherit !important;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
}
/* The hc-black theme is already high contrast optimized */
.monaco-editor.hc-black {
-ms-high-contrast-adjust: none;