From 48436e7fea413a8310d0bbfee85e18bb4d01bd67 Mon Sep 17 00:00:00 2001 From: Dmitriy Antipov Date: Tue, 18 Jul 2023 05:36:44 +0300 Subject: [PATCH] Sim scrollbar jump fix (#1028) * Update style.less The CSS property that overrides the width rule in the version of pxt being used for a workaround. https://github.com/microsoft/pxt/commit/84e896cbcadf8a78479a0867f5bc6dd53d0458a8 * Update style.less --- theme/style.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/theme/style.less b/theme/style.less index 0c478229..c5e045c9 100644 --- a/theme/style.less +++ b/theme/style.less @@ -198,4 +198,10 @@ .bluetooth { background-color: #007EF4 !important; color: white !important; +} + +/* Temporary fix simPanel jump for some screen resolutions so-as the problem is in the pxt version. Need pxt version 8.2.7 and up */ +.invisibleScrollbar::-webkit-scrollbar { + background: transparent !important; + width: initial !important; } \ No newline at end of file