this repo has no description
0
fork

Configure Feed

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

change font family to body

+16 -4
+1
components.d.ts
··· 7 7 AboutMe: typeof import('./src/components/presentation/AboutMe.vue')['default'] 8 8 AppHeader: typeof import('./src/components/AppHeader.vue')['default'] 9 9 BlogPosts: typeof import('./src/components/posts/BlogPosts.vue')['default'] 10 + Island: typeof import('./node_modules/.pnpm/iles@0.7.40_sass@1.53.0/node_modules/iles/dist/client/app/components/Island.vue')['default'] 10 11 JulienCalixte: typeof import('./src/components/core/JulienCalixte.vue')['default'] 11 12 ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] 12 13 Welcome: typeof import('./src/components/Welcome.vue')['default']
+1 -1
src/app.ts
··· 11 11 link: [ 12 12 { 13 13 rel: "stylesheet", 14 - href: "https://fonts.googleapis.com/css2?family=Fenix&family=Meow+Script&display=swap", 14 + href: "https://fonts.googleapis.com/css2?family=Gulzar&family=Meow+Script&display=swap", 15 15 }, 16 16 ], 17 17 };
+14 -3
src/assets/base.scss
··· 66 66 background: var(--color-background); 67 67 transition: color 0.5s, background-color 0.5s; 68 68 line-height: 1.6; 69 - font-family: "Fenix", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, 69 + font-family: "Gulzar", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, 70 70 serif; 71 71 font-size: 22px; 72 72 text-rendering: optimizeLegibility; ··· 88 88 color: var(--primary); 89 89 } 90 90 91 + h1 { 92 + font-size: 1.8em; 93 + } 94 + 95 + h2 { 96 + font-size: 1.2em; 97 + } 98 + 91 99 .julien-calixte { 92 - font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular", 93 - "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif; 100 + font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular", Geneva, Verdana, sans-serif; 94 101 } 102 + 103 + strong { 104 + font-weight: bold; 105 + }