Skip to content

Commit

Permalink
patch: fix row-reverse
Browse files Browse the repository at this point in the history
fixes 'row-reverse' not working pointed out in #19
  • Loading branch information
Elements6007 committed Apr 27, 2023
1 parent b2422a2 commit 899b56f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions contentScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@
flex-direction: column-reverse;
}
#contents {
flex-direction: row-reverse;
#contents.ytd-rich-grid-row {
flex-direction: row-reverse;
justify-content: left;
}
}`

var stylesrestore = `
#contents.ytd-rich-grid-renderer {
flex-direction: column;
#contents {
flex-direction: row;
}
#contents {
flex-direction: row;
}
}`

const videosLoaded = async () => {
Expand Down

0 comments on commit 899b56f

Please sign in to comment.