Skip to content

Commit

Permalink
fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine committed Jun 20, 2024
1 parent 9eda592 commit d491864
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions resources/js/components/UserNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,20 @@

<CanaryEnjinLogo v-if="canaryHost" class="h-8 w-auto" />
<EnjinLogo v-else class="h-8 w-auto" />
<span class="text-sm md:text-lg font-semibold ml-2">{{ pageTitle() }}</span>
<span
class="text-sm md:text-lg font-semibold ml-2 text-light-content-strong dark:text-dark-content-strong"
>
{{ pageTitle() }}
</span>
</div>
<div v-if="appStore.isMultiTenant && !appStore.hasValidConfig" class="hidden md:flex items-center">
<CanaryEnjinLogo v-if="canaryHost" class="h-8 w-auto" />
<EnjinLogo v-else class="h-8 w-auto" />
<span class="text-sm md:text-lg font-semibold ml-2">{{ pageTitle() }}</span>
<span
class="text-sm md:text-lg font-semibold ml-2 text-light-content-strong dark:text-dark-content-strong"
>
{{ pageTitle() }}
</span>
</div>
</div>
<div v-if="appStore.loggedIn" class="flex items-center space-x-2 md:space-x-4">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/pages/auth/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
<div
v-if="allowResend"
class="flex justify-between p-4 text-sm items-center w-full sm:max-w-md bg-green-300 bg-opacity-20 rounded-lg"
class="flex justify-between p-4 text-sm items-center w-full sm:max-w-md bg-green-300 bg-opacity-20 rounded-lg text-light-content-strong dark:text-dark-content-strong"
>
<span class="font-medium">Did not receive a verification email ?</span>
<Btn primary @click="resendVerification">Resend</Btn>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/pages/auth/Register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</div>
</Form>
</div>
<p class="text-sm text-center px-8 pt-4">
<p class="text-sm text-center px-8 pt-4 text-light-content-strong dark:text-dark-content-strong">
By proceeding, you agree with the
<a href="https://enjin.io/terms-of-service" target="_blank" class="text-primary"> Terms of Service </a>
and our
Expand Down

0 comments on commit d491864

Please sign in to comment.