Added Jay Rock network. Fixed site logo not showing up without URL.

This commit is contained in:
2020-01-11 05:31:04 +01:00
parent 1c0030b9f3
commit 8f72e61928
14 changed files with 61 additions and 33 deletions

View File

@@ -7,8 +7,7 @@
<div class="header">
<a
v-if="site.url"
v-tooltip.bottom="`Go to ${site.url}`"
v-tooltip.bottom="site.url && `Go to ${site.url}`"
:href="site.url"
target="_blank"
rel="noopener noreferrer"

View File

@@ -4,6 +4,7 @@
<li
v-for="site in sites"
:key="`site-${site.id}`"
class="site"
>
<SiteTile :site="site" />
</li>
@@ -70,9 +71,10 @@ export default {
padding: 1rem;
grid-template-columns: 1fr;
overflow-y: auto;
scrollbar-color: $highlight-weak $profile;
}
.tile {
.site {
/* vertical grid-gap not compatible with bottom padding on scrolling containers */
margin: 0 0 1rem 0;
}