display if readme is from cache or network

This commit is contained in:
Julien Calixte
2023-08-13 21:22:33 +02:00
parent 133a998ef8
commit 111794a40b
3 changed files with 25 additions and 4 deletions

View File

@@ -106,6 +106,11 @@ const focus = () => scrollToFocusedNote(undefined, true)
@click="resetStackedNotes"
>{{ repo }}</router-link
>]
<img
v-if="store.isReadmeOffline"
src="@/assets/icons/offline.svg"
alt="ofline"
/>
</h1>
<h4 class="subtitle is-4">
<em>{{ user }}</em>
@@ -184,6 +189,13 @@ $header-height: 40px;
.subtitle {
text-align: center;
}
.title {
img {
position: absolute;
right: 0;
}
}
}
}