Fix empty call to actions

This commit is contained in:
kolaente 2021-01-21 18:14:22 +01:00
parent bdfbe8857a
commit 0667a96376
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
4 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@
Show Archived
</fancycheckbox>
<p class="has-text-centered has-text-grey mt-4" v-if="namespaces.length === 0">
<p class="has-text-centered has-text-grey mt-4 is-italic" v-if="namespaces.length === 0">
You don't have any namespaces right now.
<router-link :to="{name: 'namespace.create'}">
Create a namespace.
@ -36,7 +36,7 @@
</span>
</h1>
<p class="has-text-centered has-text-grey mt-4" v-if="n.lists.length === 0">
<p class="has-text-centered has-text-grey mt-4 is-italic" v-if="n.lists.length === 0">
This namespace does not contain any lists.
<router-link :to="{name: 'list.create', params: {id: n.id}}">
Create a new list in this namespace.