1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 07:39:41 +02:00

Feature/update login UI (#716)

* cleanup signin UI

* add timeout

Co-authored-by: Hayden <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-10-02 12:18:01 -08:00 committed by GitHub
parent 4bdba9f3af
commit bd8882ec44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 26 deletions

View file

@ -1,30 +1,25 @@
<template>
<v-footer color="primary lighten-1" padless app>
<v-footer color="primary" padless app>
<v-row justify="center" align="center" dense no-gutters>
<v-col class="primary py-2 text-center white--text" cols="12">
<v-btn dark icon href="https://github.com/hay-kot/mealie" target="_blank">
<v-col class="py-2 text-center white--text" cols="12">
<v-btn color="white" icon href="https://github.com/hay-kot/mealie" target="_blank">
<v-icon>
{{ $globals.icons.github }}
</v-icon>
</v-btn>
{{ new Date().getFullYear() }} <strong>Mealie</strong>
{{ new Date().getFullYear() }} <strong> Mealie </strong>
</v-col>
</v-row>
</v-footer>
</template>
<script lang="ts">
<script lang="ts">
import { defineComponent } from "@nuxtjs/composition-api";
export default defineComponent({
setup() {
return {};
},
data: () => ({
links: ["Home", "About Us", "Team", "Services", "Blog", "Contact Us"],
}),
});
</script>
<style scoped>
</style>