From 1c9a5809a20e69444b557a0ff108a0d76ce7fdc0 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Mon, 6 Feb 2023 20:44:04 +0200 Subject: [PATCH] styles : hide all boot scrollbars Signed-off-by: Ari Archer --- content/styles/boot/main.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/styles/boot/main.scss b/content/styles/boot/main.scss index fab2b32..aaa9b48 100644 --- a/content/styles/boot/main.scss +++ b/content/styles/boot/main.scss @@ -6,6 +6,11 @@ -ms-overflow-style: none; scrollbar-width: none; + & * { + -ms-overflow-style: none; + scrollbar-width: none; + } + #bootver { color: $boot_header_colour; margin-left: 1.12em; /* makes it that it aligns with 'boot' messages */ @@ -64,6 +69,7 @@ } } -.boot::-webkit-scrollbar { +.boot::-webkit-scrollbar, +.boot *::-webkit-scrollbar { display: none; }