Center sorting options on small displays (<640px)

This commit is contained in:
syeopite 2021-06-25 19:47:42 -07:00
parent 00be2e067e
commit 102d88a594
No known key found for this signature in database
GPG key ID: 6FA616E5A5294A82
2 changed files with 8 additions and 1 deletions

View file

@ -183,4 +183,11 @@ only show up when the screen is wide enough */
#content-navigation {
display: flex;
}
/* Center sorting options when screen is less than 640px*/
@media screen and (max-width: 640px) {
#sort-options {
margin-right: auto;
}
}