Hide App Address on small screens

This commit is contained in:
Tionis Nagir 2020-05-14 14:47:28 +02:00
parent 3c63e2d00e
commit 531524d192
2 changed files with 8 additions and 1 deletions

View file

@ -546,4 +546,11 @@ table a{
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
}
}
/* Small Screens */
@media only screen and (max-width: 400px) {
#app-address {
display: none;
}
}

View file

@ -86,7 +86,7 @@
</div>
<div class="apps_text">
<a href="https://{{url}}">{{name}}</a>
<span>{{url}}</span>
<span id="app-address">{{url}}</span>
</div>
</div>
{{/apps}}