File size: 392 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | .ProseMirror-focused {
@apply outline-none;
}
.tiptap {
@apply text-xs leading-loose;
}
.tiptap h2 {
@apply text-2xl;
@apply font-sans;
margin-bottom: 1.5rem;
}
.tiptap a {
@apply underline;
}
.tiptap .bubble-menu {
@apply flex gap-2;
}
.tiptap p.is-empty::before {
color: #404040;
content: attr(data-placeholder);
float: left;
height: 0;
pointer-events: none;
}
|