fix: llama position

This commit is contained in:
kolaente 2022-01-09 16:47:21 +01:00
parent 3a54402b95
commit 60c3bf819b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 6 additions and 1 deletions

View File

@ -14,7 +14,7 @@
</p>
<template v-if="!loading && (!tasks || tasks.length === 0) && showNothingToDo">
<h3 class="has-text-centered mt-6">{{ $t('task.show.noTasks') }}</h3>
<LlamaCool class="mt-5"/>
<LlamaCool class="llama-cool"/>
</template>
<div v-if="!hasTasks" :class="{ 'is-loading': loading}" class="spinner"></div>
@ -236,4 +236,9 @@ export default {
margin-right: .5rem;
}
}
.llama-cool {
margin: 3rem auto 0;
display: block;
}
</style>