fix: llama position

This commit is contained in:
kolaente 2022-01-09 16:47:21 +01:00
parent 0ae8a0e6ef
commit a74fc47335
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

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