this repo has no description
0
fork

Configure Feed

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

better main illustration size

+12 -4
+12 -4
src/layouts/post.vue
··· 4 4 5 5 <template> 6 6 <div class="post"> 7 - <app-header /> 7 + <app-header class="header-post" /> 8 8 9 - <img id="main-illustration" v-if="frontmatter.illustration" :src="frontmatter.illustration" alt="Main illustration"> 9 + <img 10 + id="main-illustration" 11 + v-if="frontmatter.illustration" 12 + :src="frontmatter.illustration" 13 + alt="Main illustration" 14 + /> 10 15 11 16 <article id="main-article"> 12 17 <slot /> ··· 45 50 } 46 51 47 52 img { 48 - width: 100%; 49 - max-height: 40vh; 53 + max-width: 100%; 50 54 display: flex; 51 55 margin: auto; 56 + } 57 + 58 + .header-post { 59 + float: left; 52 60 } 53 61 </style>