Skip to content

Commit 564b010

Browse files
slusarzcmouse
authored andcommitted
events: Add missing changes from GitHub Issue #1000
Changes were made locally and not pushed before MR was committed.
1 parent 69a009d commit 564b010

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/EventsComponent.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const d = Object.fromEntries(Object.entries(data).filter(([k, v]) =>
1919
</script>
2020

2121
<style scoped>
22-
.eventsList h3:first-of-type {
22+
.eventsList article:first-of-type {
2323
border-top-width: 0;
24-
padding-top: 0;
2524
}
26-
.eventsList h3 {
25+
.eventsList article {
2726
border-top: 1px solid var(--vp-c-divider);
27+
}
28+
.eventsList h3 {
2829
margin-top: 18px;
29-
padding-top: 18px;
3030
}
3131
.eventsList :deep(table p) {
3232
margin: 0;
@@ -35,7 +35,7 @@ const d = Object.fromEntries(Object.entries(data).filter(([k, v]) =>
3535

3636
<template>
3737
<section class="eventsList">
38-
<template v-for="(v, k) in d">
38+
<article v-for="(v, k) in d">
3939
<h3 id="k" tabindex="-1">
4040
<code>{{ k }}</code>
4141
<a class="header-anchor" :href="'#' + k"></a>
@@ -61,6 +61,6 @@ const d = Object.fromEntries(Object.entries(data).filter(([k, v]) =>
6161
</tr>
6262
</tbody>
6363
</table>
64-
</template>
64+
</article>
6565
</section>
6666
</template>

0 commit comments

Comments
 (0)