fix logo font family

This commit is contained in:
Julien Calixte
2022-03-12 23:49:57 +01:00
parent 0077be41dc
commit 68663d5c2a
6 changed files with 16 additions and 13 deletions

View File

@@ -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",
},
],
};
},
}); });

View File

@@ -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;
}

View File

@@ -1 +0,0 @@
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime&family=Fenix&family=Meow+Script&display=swap");

View File

@@ -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>

View File

@@ -4,7 +4,3 @@
<slot /> <slot />
</div> </div>
</template> </template>
<style lang="scss">
@use "@/assets/base";
</style>

View File

@@ -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;