From 60136ca5fbcc0a733dd5f49a0c8059a5d08bbb0b Mon Sep 17 00:00:00 2001 From: sothatsbrendan Date: Thu, 1 Jun 2023 23:35:53 +0100 Subject: [PATCH] fix(Dribbblish): grid layout template rename (#937) fix for issue #934 --- Dribbblish/user.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Dribbblish/user.css b/Dribbblish/user.css index 7f1558a..f470e5a 100644 --- a/Dribbblish/user.css +++ b/Dribbblish/user.css @@ -703,22 +703,22 @@ li.GlueDropTarget { padding: var(--main-gap) 0; } -.Root__top-container:has(> .main-buddyFeed-container):not( +.Root__top-container:has(> .Root__right-sidebar > .main-buddyFeed-container):not( .Root__top-container--right-sidebar-hidden ) { grid-template-areas: "top-bar top-bar top-bar" - "nav-bar main-view right-sidebar" - "nav-bar now-playing-bar right-sidebar"; + "left-sidebar main-view right-sidebar" + "left-sidebar now-playing-bar right-sidebar"; } /* for spotify v prior to 1.2.9 */ -.Root__top-container:not(:has(> .main-buddyFeed-container)) { +.Root__top-container:not(:has(> .Root__right-sidebar > .main-buddyFeed-container)) { grid-template-areas: "top-bar top-bar" - "nav-bar main-view" - "nav-bar now-playing-bar"; + "left-sidebar main-view" + "left-sidebar now-playing-bar"; padding-right: var(--main-gap); } @@ -726,8 +726,8 @@ li.GlueDropTarget { .Root__top-container.Root__top-container--right-sidebar-hidden { grid-template-areas: "top-bar top-bar" - "nav-bar main-view" - "nav-bar now-playing-bar"; + "left-sidebar main-view" + "left-sidebar now-playing-bar"; padding-right: var(--main-gap); }