Skip to content

Commit cdd14f4

Browse files
committed
chore: moved logo inside images dir
1 parent 59d5b48 commit cdd14f4

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

typescript-version/auto-imports.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ declare global {
190190
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
191191
const useGamepad: typeof import('@vueuse/core')['useGamepad']
192192
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
193-
const useI18n: typeof import('vue-i18n')['useI18n']
194193
const useIdle: typeof import('@vueuse/core')['useIdle']
195194
const useImage: typeof import('@vueuse/core')['useImage']
196195
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
@@ -505,7 +504,6 @@ declare module 'vue' {
505504
readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
506505
readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
507506
readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
508-
readonly useI18n: UnwrapRef<typeof import('vue-i18n')['useI18n']>
509507
readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
510508
readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
511509
readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>

typescript-version/src/@layouts/components/VerticalNav.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const handleNavScroll = (evt: Event) => {
6363
v-html="logo"
6464
/>
6565

66-
<h1 class="font-weight-semibold leading-normal text-xl text-uppercase">
66+
<h1 class="font-weight-medium leading-normal text-xl text-uppercase">
6767
Master
6868
</h1>
6969
</RouterLink>

typescript-version/src/layouts/components/DefaultLayoutWithVerticalNav.vue

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<script lang="ts" setup>
22
import { useTheme } from 'vuetify'
33
4-
import VerticalNavSectionTitle from '@/@layouts/components/VerticalNavSectionTitle.vue'
4+
import upgradeBannerDark from '@images/pro/upgrade-banner-dark.png'
5+
import upgradeBannerLight from '@images/pro/upgrade-banner-light.png'
56
import VerticalNavLayout from '@layouts/components/VerticalNavLayout.vue'
67
import VerticalNavLink from '@layouts/components/VerticalNavLink.vue'
8+
import VerticalNavSectionTitle from '@/@layouts/components/VerticalNavSectionTitle.vue'
79
810
// Components
911
import Footer from '@/layouts/components/Footer.vue'
1012
import NavbarThemeSwitcher from '@/layouts/components/NavbarThemeSwitcher.vue'
1113
import UserProfile from '@/layouts/components/UserProfile.vue'
1214
1315
// Banner
14-
import upgradeBannerDark from '@images/pro/upgrade-banner-dark.png'
15-
import upgradeBannerLight from '@images/pro/upgrade-banner-light.png'
1616
1717
const vuetifyTheme = useTheme()
1818
@@ -44,9 +44,7 @@ const upgradeBanner = computed(() => {
4444
<VIcon icon="mdi-magnify" />
4545
</IconBtn>
4646

47-
<span
48-
class="d-none d-md-flex align-center text-disabled"
49-
>
47+
<span class="d-none d-md-flex align-center text-disabled">
5048
<span class="me-3">Search</span>
5149
<span class="meta-key">&#8984;K</span>
5250
</span>

0 commit comments

Comments
 (0)