💄 Displays which config file is being edited

This commit is contained in:
Alicia Sykes
2022-04-24 16:03:45 +01:00
parent 5ab619f195
commit 61761e750a
2 changed files with 20 additions and 4 deletions

View File

@@ -3,10 +3,15 @@
<footer v-if="text && text !== '' && visible" v-html="text"></footer>
<!-- Default Footer -->
<footer v-else-if="visible">
<span v-if="$store.state.currentConfigInfo" class="path-to-config">
Using: {{ $store.state.currentConfigInfo.confPath }}
</span>
<span>
Developed by <a :href="authorUrl">{{authorName}}</a>.
Licensed under <a :href="licenseUrl">{{license}}</a>
{{ showCopyright? '©': '' }} {{date}}.
Get the <a :href="repoUrl">Source Code</a>.
</span>
</footer>
</template>
@@ -50,6 +55,12 @@ footer {
@include tablet-down {
display: none;
}
span.path-to-config {
float: right;
font-size: 0.75rem;
margin: 0.1rem 0.5rem 0 0;
opacity: var(--dimming-factor);
}
}
footer a{