Skip to content

Commit 5ce3868

Browse files
committed
Merge branch 'dev'
2 parents c24f68f + 2c98ad5 commit 5ce3868

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

src/components/Header/HeaderComponent.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414
1515
import { useDark } from '@vueuse/core'
1616
17-
import SvgIcon from '@jamescoyle/vue-icon'
1817
import LocaleSelect from '@/components/LocaleSelect/LocaleSelect.vue'
1918
import ThemeToggle from '@/components/ThemeToggle/ThemeToggle.vue'
2019

src/components/ThemeToggle/ThemeToggle.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<script setup lang="ts">
22
import { useDark, useToggle } from '@vueuse/core'
33
4-
import SvgIcon from '@jamescoyle/vue-icon'
5-
64
import {
75
mdiWeatherSunny,
86
mdiWeatherNight,

src/main.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import '@/styles/app.scss'
22

3+
import SvgIcon from '@jamescoyle/vue-icon'
4+
35
import { createApp } from 'vue'
46
import App from '@/App.vue'
57
import router from '@/router'
@@ -8,4 +10,5 @@ import i18n from '@/i18n'
810
createApp(App)
911
.use(router)
1012
.use(i18n)
13+
.component('SvgIcon', SvgIcon)
1114
.mount('#app')

src/views/HomeView/HomeView.vue

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<script setup lang="ts">
2-
import SvgIcon from '@jamescoyle/vue-icon'
3-
42
import {
53
mdiWrenchClock,
64
} from '@mdi/js'
@@ -34,16 +32,13 @@ main {
3432
> h1 {
3533
font-size: $text-xxl;
3634
font-weight: 700;
37-
// background-image: linear-gradient(90deg,rgb(213, 174, 19),rgb(169, 116, 19));
38-
// background-clip: text;
39-
// -webkit-text-fill-color: transparent;
40-
// -webkit-background-clip: text;
4135
}
4236
4337
> p {
4438
font-size: $text-md;
4539
font-weight: 500;
4640
text-wrap: pretty;
41+
max-width: 30rem;
4742
}
4843
}
4944
</style>

tsconfig.app.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
"composite": true,
77
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
88
"verbatimModuleSyntax": false,
9+
"noImplicitAny": false,
10+
"allowJs": true,
911
"baseUrl": ".",
1012
"paths": {
1113
"@/*": ["./src/*"]
1214
},
1315
"types": [
1416
"node"
15-
]
17+
],
1618
}
1719
}

0 commit comments

Comments
 (0)