might work, basic writing page with linking. no saving.

This commit is contained in:
2026-06-28 10:43:47 -05:00
parent 914c9fbac8
commit c04738f9c4
12 changed files with 745 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
/* Custom component node pill styling inside the editor wrapper */
.homelab-app-reference-pill {
background-color: rgba(
16,
185,
129,
0.1
); /* Emerald tint matching your UI accents */
color: #059669;
border: 1px solid rgba(16, 185, 129, 0.2);
border-radius: 0.375rem;
padding: 0.1rem 0.4rem;
font-weight: 500;
font-size: 0.875rem;
display: inline-flex;
align-items: center;
user-select: none;
}
/* Visually highlight the whole card pill block if a user hits delete or selects it */
.ProseMirror-selectednode .homelab-app-reference-pill {
outline: 2px solid #10b981;
outline-offset: 1px;
}