From bbedf1e5c4c403760f59713bfae54b6e63ed7d76 Mon Sep 17 00:00:00 2001 From: sonofevil Date: Wed, 18 Jan 2023 14:57:11 +0100 Subject: [PATCH] fix flicker glitch (#248) * fix flicker glitch * fix incorrect selector --- chrome/shrinking_pinned_tabs.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chrome/shrinking_pinned_tabs.css b/chrome/shrinking_pinned_tabs.css index 1e102f1..3c37791 100644 --- a/chrome/shrinking_pinned_tabs.css +++ b/chrome/shrinking_pinned_tabs.css @@ -21,3 +21,8 @@ See the above repository for updates as well as full license text. */ .tab-label-container[pinned] { display: none; } + +/* Fixes flicker glitch. */ +scrollbox[part][orient="horizontal"] { + padding-inline: unset !important; +}