diff options
| author | Tionis Nagir <tionis@tasadar.net> | 2020-05-14 14:47:28 +0200 |
|---|---|---|
| committer | Tionis Nagir <tionis@tasadar.net> | 2020-05-14 18:49:15 +0200 |
| commit | 531524d192fcf8568b0203e7e6977941e7fde64c (patch) | |
| tree | 76653685177dd42b41edbe62b882ea82861d4b22 | |
| parent | 3c63e2d00ea7ab6671b3156b1ef064eb81f2fcf0 (diff) | |
Hide App Address on small screens
| -rwxr-xr-x | assets/css/styles.css | 7 | ||||
| -rwxr-xr-x | index.html | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/assets/css/styles.css b/assets/css/styles.css index 00d2cd6..18b3b02 100755 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -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; + } }
\ No newline at end of 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}} |