added prettier

This commit is contained in:
Čarodej
2022-02-01 12:21:38 +01:00
parent 5ae875233b
commit b38b532cbe
284 changed files with 25410 additions and 25338 deletions

View File

@@ -1,40 +1,35 @@
<template>
<div v-if="! $isMobile()" class="flex items-center px-5 pb-2">
<div v-if="!$isMobile()" class="flex items-center px-5 pb-2">
<!--Arrow key navigation-->
<div class="mr-4 flex items-center">
<ArrowUpIcon size="12" class="vue-feather text-gray-400" />
<ArrowDownIcon size="12" class="vue-feather text-gray-400" />
<!--Arrow key navigation-->
<div class="flex items-center mr-4">
<ArrowUpIcon size="12" class="vue-feather text-gray-400" />
<ArrowDownIcon size="12" class="vue-feather text-gray-400" />
<span class="ml-1.5 text-xs text-gray-400">
{{ $t('Navigate') }}
</span>
</div>
<span class="text-xs ml-1.5 text-gray-400">
{{ $t('Navigate') }}
</span>
</div>
<!--Submit key-->
<div class="flex items-center">
<CornerDownLeftIcon size="12" class="vue-feather text-gray-400" />
<!--Submit key-->
<div class="flex items-center">
<CornerDownLeftIcon size="12" class="vue-feather text-gray-400" />
<span class="text-xs ml-1.5 text-gray-400">
{{ $t('Go') }}
</span>
</div>
</div>
<span class="ml-1.5 text-xs text-gray-400">
{{ $t('Go') }}
</span>
</div>
</div>
</template>
<script>
import {
CornerDownLeftIcon,
ArrowDownIcon,
ArrowUpIcon,
} from 'vue-feather-icons'
import { CornerDownLeftIcon, ArrowDownIcon, ArrowUpIcon } from 'vue-feather-icons'
export default {
name: 'KeyboardHints',
components: {
CornerDownLeftIcon,
ArrowDownIcon,
ArrowUpIcon,
}
}
</script>
export default {
name: 'KeyboardHints',
components: {
CornerDownLeftIcon,
ArrowDownIcon,
ArrowUpIcon,
},
}
</script>