feat: changed the styling to an all white text

This commit is contained in:
nisch.codes 2025-03-16 18:37:04 +01:00
parent 6273029e77
commit c5aea90ed3
2 changed files with 2 additions and 9 deletions

View File

@ -110,13 +110,6 @@ watchEffect(() => {
id="note-title" id="note-title"
class="block w-full text-3xl pb-2 font-bold border-b-2 border-gray-500 focus:border-white outline-none transition-colors duration-200" class="block w-full text-3xl pb-2 font-bold border-b-2 border-gray-500 focus:border-white outline-none transition-colors duration-200"
/> />
<!--textarea
v-model="input_content"
@input="update_note"
name="note-content"
id="note-content"
class="block w-full h-full mt-4 text-lg flex-1"
></textarea-->
<MarkdownEditor <MarkdownEditor
:active_note="active_note" :active_note="active_note"

View File

@ -39,7 +39,7 @@ function stopEditing() {
<div> <div>
<div <div
v-if="!isEditing" v-if="!isEditing"
class="prose max-w-none w-full h-full text-lg cursor-pointer text-white prose-headings:text-white" class="prose max-w-none w-full h-full text-lg cursor-pointer text-white prose-headings:text-white prose-strong:text-white prose-em:text-white prose-blockquote:text-white prose-code:text-white prose-a:text-white marker:text-white"
v-html="renderedMarkdown" v-html="renderedMarkdown"
@click="startEditing" @click="startEditing"
></div> ></div>