Change text color

This commit is contained in:
PascalMarchesseault
2025-02-11 19:55:27 -05:00
parent b3e6f3cda5
commit 8fd7dc213e

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="flex flex-col items-center min-w-[300px] m-4"> <div class="flex flex-col items-center min-w-[300px] m-4">
<h1 class="text-center text-2xl font-bold mb-5">Connexion</h1> <h1 class="text-center text-2xl font-bold mb-5 login-text">Connexion</h1>
<google-login class="w-full" <google-login class="w-full"
:callback="googleCallback" :callback="googleCallback"
@@ -31,3 +31,12 @@ async function googleCallback(token) {
} }
</script> </script>
<style scoped>
.login-text{
@apply text-hOnBackground;
}
</style>