Skip to content

Commit

Permalink
fix: note editor italic (#5230)
Browse files Browse the repository at this point in the history
  • Loading branch information
zxhlyh authored Jun 14, 2024
1 parent bc757f1 commit 6be0027
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const theme: EditorThemeClasses = {
},
link: 'note-editor-theme_link',
text: {
italic: 'note-editor-theme_text-italic',
strikethrough: 'note-editor-theme_text-strikethrough',
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@

.note-editor-theme_text-strikethrough {
text-decoration: line-through;
}

.note-editor-theme_text-italic {
font-style: italic;
}

0 comments on commit 6be0027

Please sign in to comment.