From 751e07963bbc998b2a74af8c2dfbb2415fcf1473 Mon Sep 17 00:00:00 2001 From: Sanooj Es Date: Thu, 24 Oct 2024 06:33:18 +0530 Subject: [PATCH] fix(Flow): add global nav grid areas (#1119) --- Flow/user.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Flow/user.css b/Flow/user.css index 60aea46..21418b1 100644 --- a/Flow/user.css +++ b/Flow/user.css @@ -102,6 +102,14 @@ width: 100%; background-color: var(--spice-main); } +.global-nav .Root__top-container { + grid-template-areas: + "global-nav global-nav global-nav global-nav" + "left-sidebar main-view right-sidebar now-playing-bar" + "left-sidebar main-view right-sidebar now-playing-bar"; + grid-template-columns: auto 1fr auto 15vw; + grid-template-rows: 1fr auto; +} .main-nowPlayingBar-container { display: flex; flex-direction: column;