this repo has no description
0
fork

Configure Feed

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

change layout and code font familyt

+20 -7
+7 -4
components.d.ts
··· 1 1 // generated by unplugin-vue-components 2 2 // We suggest you to commit this file into source control 3 - // Read more: https://github.com/vuejs/vue-next/pull/3399 3 + // Read more: https://github.com/vuejs/core/pull/3399 4 + import '@vue/runtime-core' 4 5 5 - declare module 'vue' { 6 + export {} 7 + 8 + declare module '@vue/runtime-core' { 6 9 export interface GlobalComponents { 7 10 AboutMe: typeof import('./src/components/presentation/about-me.vue')['default'] 8 11 AppHeader: typeof import('./src/components/app-header.vue')['default'] ··· 13 16 MyBooks: typeof import('./src/components/presentation/my-books.vue')['default'] 14 17 MyProjects: typeof import('./src/components/presentation/my-projects.vue')['default'] 15 18 ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] 19 + RouterLink: typeof import('vue-router')['RouterLink'] 20 + RouterView: typeof import('vue-router')['RouterView'] 16 21 Welcome: typeof import('./src/components/Welcome.vue')['default'] 17 22 } 18 23 } 19 - 20 - export { }
+7 -1
src/assets/base.scss
··· 36 36 37 37 --section-gap: 160px; 38 38 --primary: hsl(229, 90%, 28%); 39 + 40 + --code-font-family: "Cousine", monospace; 39 41 } 40 42 41 43 @media (prefers-color-scheme: dark) { ··· 66 68 color: var(--color-text); 67 69 background: var(--color-background); 68 70 transition: color 0.5s, background-color 0.5s; 69 - line-height: 1.6; 71 + line-height: 1.3; 70 72 font-family: "Gulzar", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, 71 73 serif; 72 74 font-size: 22px; ··· 104 106 strong { 105 107 font-weight: bold; 106 108 } 109 + 110 + code { 111 + font-family: var(--code-font-family); 112 + }
+1 -1
src/components/architecture/crc-card.vue
··· 42 42 padding: 1rem; 43 43 margin: 1rem 0; 44 44 border-radius: 15px; 45 - font-family: 'Cousine', monospace; 45 + font-family: var(--code-font-family); 46 46 47 47 hr { 48 48 margin-bottom: 1rem;
+5 -1
src/layouts/post.vue
··· 20 20 } 21 21 22 22 article#main-article { 23 - max-width: 680px; 23 + max-width: 740px; 24 24 margin: auto; 25 25 padding: 1rem; 26 26 text-align: justify; ··· 38 38 h7 { 39 39 margin-top: 1rem; 40 40 margin-bottom: 0.5rem; 41 + } 42 + 43 + p { 44 + margin-bottom: 1rem; 41 45 } 42 46 43 47 img {