Skip to content

Commit

Permalink
fix bug fullscreen, icons, navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
reyptr27 committed Jul 11, 2024
1 parent 3de8243 commit 68ed06d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion stubs/inertia/js/Components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const logout = () => {
@click="toggleFullScreen"
v-slot="{ iconSizeClasses }"
class="hidden md:inline-flex"
srText="Toggle dark mode"
srText="Toggle full screen"
>
<ArrowsPointingOutIcon
v-show="!isFullscreen"
Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia/js/Components/Sidebar/SidebarHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { XMarkIcon } from '@heroicons/vue/24/outline';
<Link :href="route('dashboard')" class="inline-flex items-center gap-2">
<ApplicationLogo aria-hidden="true" class="w-10 h-auto" />
<span v-show="sidebarState.isOpen || sidebarState.isHovered" class="text-3xl text-gray-700 text-transform: uppercase; font-bold tracking-tight leading-none whitespace-nowrap dark:text-white">
REYPTR27 UI <small class="text-sm text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v2.0</small>
REY-UI <small class="text-sm text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v1.0</small>
</span>
</Link>

Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia/js/Layouts/AuthenticationLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const themeChangeToast = () => {
<Link :href="'/'" class="inline-flex items-center gap-2">
<ApplicationLogo aria-hidden="true" class="w-16 h-16" />
<span aria-hidden="true" class="text-5xl text-gray-700 text-transform: uppercase; font-bold tracking-tight leading-none whitespace-nowrap dark:text-white">
REYPTR27 UI<small class="text-lg text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v2.0</small>
REY-UI<small class="text-lg text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v1.0</small>
</span>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia/js/Pages/Dashboard.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup>
import AppLayout from '@/Layouts/AppLayout.vue';
import Button from "@/Components/Button.vue";
import { GithubIcon } from "@/Components/Icons/Brands";
import { GithubIcon } from "@/Components/Icons/Brand";
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia/js/Pages/PrivacyPolicy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defineProps(['policy']);
<Link :href="'/'" class="inline-flex items-center gap-2">
<ApplicationLogo aria-hidden="true" class="w-16 h-16" />
<span aria-hidden="true" class="text-5xl text-gray-700 text-transform: uppercase; font-bold tracking-tight leading-none whitespace-nowrap dark:text-white">
REYPTR27 UI<small class="text-lg text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v2.0</small>
REY-UI<small class="text-lg text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v1.0</small>
</span>
</Link>

Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia/js/Pages/TermsOfService.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defineProps(['terms']);
<Link :href="'/'" class="inline-flex items-center gap-2">
<ApplicationLogo aria-hidden="true" class="w-16 h-16" />
<span aria-hidden="true" class="text-5xl text-gray-700 text-transform: uppercase; font-bold tracking-tight leading-none whitespace-nowrap dark:text-white">
REYPTR27 UI<small class="text-lg text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v2.0</small>
REY-UI<small class="text-lg text-gray-700 text-transform: uppercase; font-thin tracking-tight leading-none whitespace-nowrap dark:text-white"> v1.0</small>
</span>
</Link>

Expand Down
25 changes: 13 additions & 12 deletions stubs/inertia/js/Pages/Welcome.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@

<script setup>
import { Head, Link } from '@inertiajs/vue3';
defineProps({
canLogin: Boolean,
canRegister: Boolean,
laravelVersion: String,
phpVersion: String,
});
</script>

<template>
<Head title="Welcome" />

Expand Down Expand Up @@ -110,15 +122,4 @@
</div>
</div>
</div>
</template>

<script setup>
import { Head, Link } from '@inertiajs/inertia-vue3'
defineProps({
canLogin: Boolean,
canRegister: Boolean,
laravelVersion: String,
phpVersion: String,
})
</script>
</template>

0 comments on commit 68ed06d

Please sign in to comment.