File tree Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,6 @@ declare global {
190
190
const useFullscreen : typeof import ( '@vueuse/core' ) [ 'useFullscreen' ]
191
191
const useGamepad : typeof import ( '@vueuse/core' ) [ 'useGamepad' ]
192
192
const useGeolocation : typeof import ( '@vueuse/core' ) [ 'useGeolocation' ]
193
- const useI18n : typeof import ( 'vue-i18n' ) [ 'useI18n' ]
194
193
const useIdle : typeof import ( '@vueuse/core' ) [ 'useIdle' ]
195
194
const useImage : typeof import ( '@vueuse/core' ) [ 'useImage' ]
196
195
const useInfiniteScroll : typeof import ( '@vueuse/core' ) [ 'useInfiniteScroll' ]
@@ -505,7 +504,6 @@ declare module 'vue' {
505
504
readonly useFullscreen : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useFullscreen' ] >
506
505
readonly useGamepad : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useGamepad' ] >
507
506
readonly useGeolocation : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useGeolocation' ] >
508
- readonly useI18n : UnwrapRef < typeof import ( 'vue-i18n' ) [ 'useI18n' ] >
509
507
readonly useIdle : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useIdle' ] >
510
508
readonly useImage : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useImage' ] >
511
509
readonly useInfiniteScroll : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useInfiniteScroll' ] >
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ const handleNavScroll = (evt: Event) => {
63
63
v-html =" logo"
64
64
/>
65
65
66
- <h1 class =" font-weight-semibold leading-normal text-xl text-uppercase" >
66
+ <h1 class =" font-weight-medium leading-normal text-xl text-uppercase" >
67
67
Master
68
68
</h1 >
69
69
</RouterLink >
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
<script lang="ts" setup>
2
2
import { useTheme } from ' vuetify'
3
3
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'
5
6
import VerticalNavLayout from ' @layouts/components/VerticalNavLayout.vue'
6
7
import VerticalNavLink from ' @layouts/components/VerticalNavLink.vue'
8
+ import VerticalNavSectionTitle from ' @/@layouts/components/VerticalNavSectionTitle.vue'
7
9
8
10
// Components
9
11
import Footer from ' @/layouts/components/Footer.vue'
10
12
import NavbarThemeSwitcher from ' @/layouts/components/NavbarThemeSwitcher.vue'
11
13
import UserProfile from ' @/layouts/components/UserProfile.vue'
12
14
13
15
// Banner
14
- import upgradeBannerDark from ' @images/pro/upgrade-banner-dark.png'
15
- import upgradeBannerLight from ' @images/pro/upgrade-banner-light.png'
16
16
17
17
const vuetifyTheme = useTheme ()
18
18
@@ -44,9 +44,7 @@ const upgradeBanner = computed(() => {
44
44
<VIcon icon =" mdi-magnify" />
45
45
</IconBtn >
46
46
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" >
50
48
<span class =" me-3" >Search</span >
51
49
<span class =" meta-key" >⌘ ; K</span >
52
50
</span >
You can’t perform that action at this time.
0 commit comments