Skip to content

Commit

Permalink
feat(): update classname
Browse files Browse the repository at this point in the history
  • Loading branch information
kehua committed Aug 1, 2023
1 parent ed517c6 commit d415eee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ListItem: FC = () => {
const isBullet = attrs?.listType === "bullet";
return (
<li
className={classNames("checkboxLi", {
className={classNames("listItem", {
"ProseMirror-selectednode": selected,
})}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1991,7 +1991,7 @@ pre[class*="language-"] {

/* checkbox */

.checkboxLi {
.listItem {
display: flex;
align-items: flex-start;
gap: 0.5rem;
Expand Down

0 comments on commit d415eee

Please sign in to comment.