Add Markdown table support to the Note node (#2072)

This commit is contained in:
Gremlation
2024-12-27 23:30:47 +08:00
committed by GitHub
parent 9acb5abf58
commit a3be889872
4 changed files with 89 additions and 1 deletions

View File

@@ -197,6 +197,21 @@ body {
padding: 0.5em;
}
.comfy-markdown .tiptap table {
border-collapse: collapse;
}
.comfy-markdown .tiptap th {
text-align: left;
background: var(--comfy-menu-bg);
}
.comfy-markdown .tiptap th,
.comfy-markdown .tiptap td {
padding: 0.5em;
border: thin solid;
}
.comfy-modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */