diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index 72bd553..713f20f 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -16,11 +16,7 @@ } .btn { - @apply bg-primary hover:bg-orange-700 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-pointer; - } - - .btn-disabled { - @apply bg-primary opacity-50 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-not-allowed; + @apply bg-primary hover:bg-orange-700 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-pointer disabled:opacity-50 disabled:hover:cursor-not-allowed; } .divider { @@ -34,4 +30,8 @@ .input { @apply bg-neutral-200 dark:bg-neutral-800 dark:text-gray-300 text-gray-900 shadow rounded border-none focus:ring-primary } + + .text-default { + @apply dark:text-gray-300 text-gray-900 + } } \ No newline at end of file diff --git a/frontend/components/Login.vue b/frontend/components/Login.vue index ae98977..28769d5 100644 --- a/frontend/components/Login.vue +++ b/frontend/components/Login.vue @@ -1,21 +1,39 @@ diff --git a/frontend/plugins/firebase.js b/frontend/plugins/firebase.js index 3aeb7e5..9e309a4 100644 --- a/frontend/plugins/firebase.js +++ b/frontend/plugins/firebase.js @@ -13,5 +13,4 @@ export default defineNuxtPlugin((nuxtApp) => { }; const app = initializeApp(firebaseConfig); - const auth = getAuth(app); }) \ No newline at end of file