15 lines
421 B
CSS
15 lines
421 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap");
|
|
@import "tailwindcss";
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
@layer components {
|
|
/* Editor styles */
|
|
.editor-container {
|
|
@apply min-h-[500px] border rounded-lg;
|
|
}
|
|
|
|
/* Comment thread styles */
|
|
.comment-thread {
|
|
@apply border-l-2 border-gray-200 dark:border-gray-700 pl-4 ml-4;
|
|
}
|
|
}
|