fix(Flow): add global nav grid areas (#1119)

This commit is contained in:
Sanooj Es 2024-10-24 06:33:18 +05:30 committed by GitHub
parent 21d97c1a5e
commit 751e07963b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;