Center sorting options on small displays (<640px)

This commit is contained in:
syeopite
2021-06-25 19:47:42 -07:00
parent c0673f8314
commit 515e617f0d
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;
}
}