Cherry-pick fixes

This commit is contained in:
syeopite 2021-10-27 22:39:02 -07:00
parent 9a06546c5b
commit f4e8bb99ba
No known key found for this signature in database
GPG key ID: 6FA616E5A5294A82
9 changed files with 45 additions and 182 deletions

View file

@ -50,3 +50,10 @@
#link-widget-primary a:hover {
color: #e1e1e1 !important;
}
/* Center sorting options when screen is less than 640px*/
@media screen and (max-width: 640px) {
#sort-options {
margin-right: auto;
}
}

View file

@ -567,5 +567,16 @@ p,
#content-navigation {
margin-bottom: 0.5em;
margin-bottom: 0.5em;
display: flex;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
-ms-overflow-style: none;
scrollbar-width: none;
}
#content-navigation::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}