try to improve tracker on smaller screens

This commit is contained in:
Fabian Dill
2020-06-28 10:51:48 +02:00
parent dacecc4637
commit 93199152c7
2 changed files with 21 additions and 7 deletions

View File

@@ -13,4 +13,19 @@ th {
table {
width: 100% !important;
}
img.alttp-sprite {
height: 32px;
width: 32px;
object-fit: contain;
}
/* this is specific to the tracker right now */
@media all and (max-width: 1750px) {
img.alttp-sprite {
height: 16px;
width: 16px;
object-fit: contain;
}
}