fix logo font family
This commit is contained in:
11
src/app.ts
11
src/app.ts
@@ -1,8 +1,19 @@
|
|||||||
import { pinia } from "@/store/store";
|
import { pinia } from "@/store/store";
|
||||||
import { defineApp } from "iles";
|
import { defineApp } from "iles";
|
||||||
|
import "@/assets/base.scss";
|
||||||
|
|
||||||
export default defineApp({
|
export default defineApp({
|
||||||
enhanceApp({ app }) {
|
enhanceApp({ app }) {
|
||||||
app.use(pinia);
|
app.use(pinia);
|
||||||
},
|
},
|
||||||
|
head() {
|
||||||
|
return {
|
||||||
|
link: [
|
||||||
|
{
|
||||||
|
rel: "stylesheet",
|
||||||
|
href: "https://fonts.googleapis.com/css2?family=Fenix&family=Meow+Script&display=swap",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
@import "@/assets/fonts";
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--vt-c-white: #ffffff;
|
--vt-c-white: #ffffff;
|
||||||
--vt-c-white-soft: #f8f8f8;
|
--vt-c-white-soft: #f8f8f8;
|
||||||
@@ -89,3 +87,8 @@ h6 {
|
|||||||
font-variant: small-caps;
|
font-variant: small-caps;
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.julien-calixte {
|
||||||
|
font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular",
|
||||||
|
"Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime&family=Fenix&family=Meow+Script&display=swap");
|
|
||||||
@@ -19,11 +19,7 @@ const style = `font-size: ${fontSize[props.size]}`;
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
@use "@/assets/fonts";
|
|
||||||
|
|
||||||
.julien-calixte {
|
.julien-calixte {
|
||||||
font-variant: normal;
|
font-variant: normal;
|
||||||
font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular",
|
|
||||||
"Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -4,7 +4,3 @@
|
|||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
@use "@/assets/base";
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -9,8 +9,6 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@use "@/assets/base";
|
|
||||||
|
|
||||||
article#main-article {
|
article#main-article {
|
||||||
max-width: 650px;
|
max-width: 650px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|||||||
Reference in New Issue
Block a user