this repo has no description
0
fork

Configure Feed

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

order tag

+31 -2
+1
components.d.ts
··· 15 15 JulienCalixte: typeof import('./src/components/core/julien-calixte.vue')['default'] 16 16 MyBooks: typeof import('./src/components/presentation/my-books.vue')['default'] 17 17 MyProjects: typeof import('./src/components/presentation/my-projects.vue')['default'] 18 + OrderTag: typeof import('./src/components/core/order-tag.vue')['default'] 18 19 ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] 19 20 RouterLink: typeof import('vue-router')['RouterLink'] 20 21 RouterView: typeof import('vue-router')['RouterView']
+9 -2
src/assets/base.scss
··· 82 82 } 83 83 84 84 p, 85 - blockquote { 85 + blockquote, 86 + ul, 87 + ol { 86 88 margin-bottom: 1rem; 87 89 88 90 &:last-child { ··· 104 106 } 105 107 106 108 h2 { 107 - font-size: 1.2em; 109 + font-size: 1.5em; 110 + } 111 + 112 + h3, 113 + h4 { 114 + font-size: 1.3em; 108 115 } 109 116 110 117 .julien-calixte {
+21
src/components/core/order-tag.vue
··· 1 + <script setup lang="ts"> 2 + interface Props { 3 + order: number 4 + } 5 + 6 + defineProps<Props>() 7 + </script> 8 + 9 + <template> 10 + <span class="order-tag">{{ order }}</span> 11 + </template> 12 + 13 + <style scoped lang="scss"> 14 + .order-tag { 15 + padding: 0 0.5rem; 16 + background-color: #fffa65; 17 + color: var(--vt-c-black); 18 + font-family: var(--code-font-family); 19 + border-radius: 0.5rem; 20 + } 21 + </style>