this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix logo font family

+16 -13
+11
src/app.ts
··· 1 1 import { pinia } from "@/store/store"; 2 2 import { defineApp } from "iles"; 3 + import "@/assets/base.scss"; 3 4 4 5 export default defineApp({ 5 6 enhanceApp({ app }) { 6 7 app.use(pinia); 8 + }, 9 + head() { 10 + return { 11 + link: [ 12 + { 13 + rel: "stylesheet", 14 + href: "https://fonts.googleapis.com/css2?family=Fenix&family=Meow+Script&display=swap", 15 + }, 16 + ], 17 + }; 7 18 }, 8 19 });
+5 -2
src/assets/base.scss
··· 1 - @import "@/assets/fonts"; 2 - 3 1 :root { 4 2 --vt-c-white: #ffffff; 5 3 --vt-c-white-soft: #f8f8f8; ··· 89 87 font-variant: small-caps; 90 88 color: var(--primary); 91 89 } 90 + 91 + .julien-calixte { 92 + font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular", 93 + "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif; 94 + }
-1
src/assets/fonts.scss
··· 1 - @import url("https://fonts.googleapis.com/css2?family=Courier+Prime&family=Fenix&family=Meow+Script&display=swap");
-4
src/components/core/JulienCalixte.vue
··· 19 19 </template> 20 20 21 21 <style scoped lang="scss"> 22 - @use "@/assets/fonts"; 23 - 24 22 .julien-calixte { 25 23 font-variant: normal; 26 - font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular", 27 - "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif; 28 24 } 29 25 </style>
-4
src/layouts/default.vue
··· 4 4 <slot /> 5 5 </div> 6 6 </template> 7 - 8 - <style lang="scss"> 9 - @use "@/assets/base"; 10 - </style>
-2
src/layouts/post.vue
··· 9 9 </template> 10 10 11 11 <style lang="scss"> 12 - @use "@/assets/base"; 13 - 14 12 article#main-article { 15 13 max-width: 650px; 16 14 margin: auto;