Fixed issue causing text overlap in sort select box

Updated grid columns to be more adaptable to content, with a min-width
of the old value.
Fixes #1654
This commit is contained in:
Dan Brown 2019-10-07 21:06:15 +01:00
parent d4c62265ca
commit d6456e961a
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -253,7 +253,8 @@ $btt-size: 40px;
.list-sort {
display: inline-grid;
margin-left: $-s;
grid-template-columns: 120px 40px;
grid-template-columns: minmax(120px, max-content) 40px;
font-size: 0.9rem;
border: 2px solid #DDD;
border-radius: 4px;
}