Skip to content

Commit

Permalink
fix: fix table overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Nov 29, 2023
1 parent 17074a9 commit 231a610
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/.vitepress/theme/Article.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,13 @@ const prevPost = computed(() => posts[findCurrentIndex() + 1])
</div>
</article>
</template>

<style>
table {
display: block;
width: 100%;
width: max-content;
max-width: 100%;
overflow: auto;
}
</style>

0 comments on commit 231a610

Please sign in to comment.