From 5f6f62a7e91a05d9c05a88f5467ec1e2026393bf Mon Sep 17 00:00:00 2001 From: Hydroxycarbamide Date: Sun, 15 May 2022 20:28:42 +0200 Subject: [PATCH] Use anilist color for login button + small refactor --- src/components/auth/AuthButton.vue | 5 +++-- src/main.js | 3 +-- tailwind.config.js | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/auth/AuthButton.vue b/src/components/auth/AuthButton.vue index 3b1abb0..993e5c8 100644 --- a/src/components/auth/AuthButton.vue +++ b/src/components/auth/AuthButton.vue @@ -2,8 +2,9 @@ import href from '../../auth/anilist' \ No newline at end of file diff --git a/src/main.js b/src/main.js index 21cf16d..63e1c30 100644 --- a/src/main.js +++ b/src/main.js @@ -16,7 +16,7 @@ library.add(faPlus); library.add(faPoo); import ApolloClient from "apollo-boost"; -import { DefaultApolloClient } from "@vue/apollo-composable"; +import { DefaultApolloClient, provideApolloClient} from "@vue/apollo-composable"; const apolloClient = new ApolloClient({ uri: `https://graphql.anilist.co/`, @@ -25,7 +25,6 @@ const apolloClient = new ApolloClient({ import { createApp, provide, h } from 'vue' import App from './App.vue' import './index.css' -import { provideApolloClient } from "@vue/apollo-composable"; provideApolloClient(apolloClient) diff --git a/tailwind.config.js b/tailwind.config.js index 26ec45c..bec3210 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -9,6 +9,9 @@ module.exports = { colors: { gray: { 900: '#202225' + }, + blue: { + 900: '#19212D' } } },