Use anilist color for login button + small refactor

This commit is contained in:
Hydroxycarbamide 2022-05-15 20:28:42 +02:00
parent 12a945b806
commit 5f6f62a7e9
3 changed files with 7 additions and 4 deletions

View file

@ -2,8 +2,9 @@
import href from '../../auth/anilist' import href from '../../auth/anilist'
</script> </script>
<template> <template>
<a class="button inline-flex mx-auto max-w-sm items-center" :href="href" target="_blank"> <a class="shadow-md hover:shadow-xl p-2 rounded-full text-white px-6
transition-shadow bg-blue-900 inline-flex mx-auto max-w-sm items-center" :href="href" target="_blank">
Login with Anilist Login with Anilist
<img class="h-5 w-5 ml-3" src="../../assets/android-chrome-512x512.png" /> <img class="h-8 w-8 ml-3" src="../../assets/android-chrome-512x512.png" />
</a> </a>
</template> </template>

View file

@ -16,7 +16,7 @@ library.add(faPlus);
library.add(faPoo); library.add(faPoo);
import ApolloClient from "apollo-boost"; import ApolloClient from "apollo-boost";
import { DefaultApolloClient } from "@vue/apollo-composable"; import { DefaultApolloClient, provideApolloClient} from "@vue/apollo-composable";
const apolloClient = new ApolloClient({ const apolloClient = new ApolloClient({
uri: `https://graphql.anilist.co/`, uri: `https://graphql.anilist.co/`,
@ -25,7 +25,6 @@ const apolloClient = new ApolloClient({
import { createApp, provide, h } from 'vue' import { createApp, provide, h } from 'vue'
import App from './App.vue' import App from './App.vue'
import './index.css' import './index.css'
import { provideApolloClient } from "@vue/apollo-composable";
provideApolloClient(apolloClient) provideApolloClient(apolloClient)

View file

@ -9,6 +9,9 @@ module.exports = {
colors: { colors: {
gray: { gray: {
900: '#202225' 900: '#202225'
},
blue: {
900: '#19212D'
} }
} }
}, },