All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s
27 lines
410 B
Vue
27 lines
410 B
Vue
<script setup lang="ts">
|
|
</script>
|
|
|
|
<template>
|
|
<div class="tui-statusbar">
|
|
<span>{{ $t('prefooter') }}</span>
|
|
<br>
|
|
<span>{{ $t('footer') }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.tui-statusbar {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
span {
|
|
opacity: 0.4;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|