Hide App Address on small screens
This commit is contained in:
parent
3c63e2d00e
commit
531524d192
2 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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}}
|
||||
|
|
Loading…
Reference in a new issue