Merge pull request #537 from CharlieS1103/master

Fix for new version
This commit is contained in:
morpheusthewhite 2021-09-16 08:35:37 +02:00 committed by GitHub
commit b402576ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View File

@ -111,6 +111,7 @@ playback-bar = B28228
misc = B28228 misc = B28228
; Description ; Description
; text = main text, playlist names in main field, name of playlist selected in sidebar, headings ; text = main text, playlist names in main field, name of playlist selected in sidebar, headings

View File

@ -389,15 +389,15 @@ a.x-categoryCard-CategoryCard, a.x-heroCategoryCard-HeroCategoryCard {
overflow-y: scroll; overflow-y: scroll;
} }
#spicetify-playlist-list>li { #spicetify-playlist-list > div > div:nth-child(2) > li {
margin: 4px 3.2vw; margin: 4px 3.2vw;
width: 90%; width: 84%;
flex-shrink: 0; flex-shrink: 0;
padding-top: 10%; padding-top: 10%;
padding-bottom: 10%; padding-bottom: 10%;
box-sizing: border-box; box-sizing: border-box;
position: relative; position: relative;
margin-bottom: 8px; margin-bottom: -1px;
border-radius: 10px; border-radius: 10px;
border: 2px solid var(--spice-text); border: 2px solid var(--spice-text);
display: flex; display: flex;
@ -436,9 +436,6 @@ svg[Attributes Style] {
color: var(--spice-text); color: var(--spice-text);
} }
.main-collectionLinkButton-collectionLinkButton.main-collectionLinkButton-selected {
color: var(--spice-subbutton-text) !important;
}
.view-homeShortcutsGrid-shortcut { .view-homeShortcutsGrid-shortcut {
@ -542,5 +539,11 @@ padding-top: 8px;
padding: unset !important; padding: unset !important;
} }
#spicetify-playlist-list > div {
scroll-behavior: smooth;
overflow-y: scroll;
overflow: hidden;
height: 500px !important;
}