1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 07:09:41 +02:00

fix: Add Formatting for Markdown Tables (#4703)

Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
Michael Genson 2024-12-11 03:33:43 -06:00 committed by GitHub
parent 285ccb408f
commit cc37147a34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,3 +48,20 @@ export default defineComponent({
},
});
</script>
<style scoped>
::v-deep table {
border-collapse: collapse;
width: 100%;
}
::v-deep th, ::v-deep td {
border: 1px solid;
padding: 8px;
text-align: left;
}
::v-deep th {
font-weight: bold;
}
</style>